Advertisement
Guest User

SE Coud CSS

a guest
Apr 23rd, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.73 KB | None | 0 0
  1. #header_wrapper {
  2.     background-color: black;
  3. }
  4.  
  5.  
  6. div#header {
  7.   background-color: black;
  8. }
  9.  
  10. div#text-logo {
  11.     font-family: sans-serif;
  12.     font-weight: 900;
  13.     color: green;
  14.     text-transform: uppercase;
  15.     font-size: xx-large;
  16.     margin-left: 10px;
  17.     margin-bottom: 30px;
  18.     line-height: 1em;
  19. }
  20.  
  21. div#menu_user.menu-mini.btn-toolbar.nav {
  22.     margin-right: 1em;
  23. }
  24.  
  25. div#breaking-news {
  26.     background-color: #FFF;
  27.     padding: 15px;
  28.     margin-bottom: 15px;
  29.     border-radius: 5px;
  30. }
  31.  
  32. h1, h2, h3 {
  33.     color: green;
  34.     text-transform: uppercase;
  35. }
  36.  
  37. .posts .post_info a, .posts .post_author a, .posts .post_vote a {
  38.     color: green;
  39. }
  40.  
  41. .posts .vote {
  42.     border-right: 2px solid #FF0000;
  43.     padding-right: 5px;
  44. }
  45.  
  46. .vote .vote_score {
  47.     color: red;
  48. }
  49.  
  50. .vote .vote_up a, .vote .vote_down a {
  51.     color: darkred;
  52. }
  53.  
  54. #header #logo {
  55.     margin: auto 30px 5px 100px !important;
  56. }
  57.  
  58. .widget h2 {
  59.   color: green;
  60. }
  61.  
  62. a.signup-button {
  63.     padding: 10px;
  64.     border: 0;
  65.     border-radius: 5px;
  66.     background-color: green;
  67.     color: white;
  68.     display: block;
  69.     text-align: center;
  70.     font-size: large;
  71.     text-decoration: none;
  72.     max-width: 90%;
  73. }
  74.  
  75. .members li.ui-member {
  76.     margin: 0 5px 5px 0;
  77.     border: 1px dashed #ff0000;
  78.     border-radius: 5px;
  79.     padding: 3px;
  80. }
  81.  
  82. ul.member_fields {
  83.   float: left;
  84.   margin-top: 10px;
  85.   margin-right: 45px;
  86. }
  87.  
  88. span.stats {
  89.     float: left;
  90.     margin-top: 15px;
  91.     margin-right: 100px;
  92. }
  93.  
  94. div#comment-notes {
  95.     margin: 15px 0;
  96.     border: 1px solid red;
  97.     padding: 15px 5px;
  98. }
  99.  
  100. .pagination {
  101.     margin: 18px 0 0 0;
  102. }
  103.  
  104. div#footer_wrapper {
  105.     background-color: black;
  106.     padding: 15px;
  107.     color: #FFF;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement