Advertisement
Guest User

css

a guest
Oct 10th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. /*---------------------*/
  2. /* HTML ELEMENTS */
  3. /*---------------------*/
  4. body {
  5. font-family: Helvetica, Arial, sans-serif;
  6. font-size: 1rem;
  7. color: #141823;
  8. background-color: #e9eaed;
  9.  
  10. }
  11.  
  12. h1 {
  13. color: #FFFFFF;
  14. font-weight: bold;
  15. font-size: 1.3rem;
  16.  
  17. }
  18.  
  19. h2 {
  20. color: blue;
  21. margin-top: 5px;
  22. margin-bottom: 5px;
  23. }
  24.  
  25. h3 {
  26. color: #9197a3;
  27. font-size: 0.8rem;
  28. margin-bottom: 15px;
  29. }
  30. li {
  31. display: inline;
  32. }
  33. /*------------------*/
  34. /* REUSABLE CLASSES */
  35. /*---------------------*/
  36.  
  37. header p {
  38. margin-bottom: 14px;
  39. }
  40.  
  41. /*---------------------*/
  42. /* CONTAINING ELEMENTS */
  43. /*---------------------*/
  44. #container{
  45. width: 440px;
  46. margin-left: auto;
  47. margin-right: auto;
  48.  
  49. }
  50.  
  51. header.header
  52. {
  53. padding-left: 40px;
  54. margin-bottom: 10px;
  55. line-height: 42px;
  56. background-color: #3b5998;
  57. }
  58. header {
  59. margin-bottom: 1px;
  60. }
  61. article header{
  62. background-color: white;
  63. padding-left: 20px;
  64. border-bottom-style: solid;
  65. border-color: #e1e2e3;
  66. border-width: 1px;
  67. padding-top: 20px;
  68. }
  69. article {
  70. border-style: solid;
  71. border-color: #dfe0e4 ;
  72. border-width: 1px;
  73. margin-bottom: 10px;
  74.  
  75. }
  76. header li{
  77. display: inline;
  78. }
  79. a {
  80. text-decoration: none;
  81. }
  82. footer{
  83. background-color: #f6f7f8;
  84. padding: 20px;
  85. }
  86. .dot {
  87. background-image: url("../media/dot.png");
  88. background-repeat: no-repeat;
  89. background-position: left;
  90. padding-left: 8px;
  91.  
  92. }
  93. footer p a {
  94. padding-left: 20px;
  95. background-image: url("../media/icons.png");
  96. background-size: 15px 55px;
  97. background-repeat: no-repeat;
  98. }
  99. header ul {
  100. margin-bottom: 10px;
  101. }
  102. .lijntje {
  103. border-bottom-style: solid ;
  104. border-bottom-width: 1px ;
  105. border-color: #e1e2e3;
  106. padding-bottom: 10px;
  107. margin-bottom: 10px;
  108. }
  109.  
  110.  
  111.  
  112. /*Footer a {
  113. padding-left: 20px;
  114. background-image: url("../media/icons.png");
  115. background-size: 15px 55px;
  116. background-repeat: no-repeat;}*/
  117.  
  118. footer h4{
  119. font-size: 1.1rem;
  120. font-weight: bold;
  121. color:#3b5998;
  122. }
  123. footer p {
  124. display:inline;
  125.  
  126. }
  127.  
  128. .date{
  129. color: #9197a3;
  130.  
  131. }
  132. footer ul li {
  133. font-size:0.65rem;
  134. }
  135. .extracomment {
  136. padding-left: 20px;
  137. background-image: url("../media/icons.png");
  138. background-size: 15px 55px;
  139. background-repeat: no-repeat;
  140. background-position-y: -40px;
  141.  
  142. }
  143. footer ul li:last-child{
  144. padding-left: 20px;
  145. background-image: url("../media/icons.png");
  146. background-size: 15px 40px;
  147. background-repeat: no-repeat;
  148.  
  149. }
  150. .dotcomment {
  151. background-image: url("../media/dot.png");
  152. background-repeat: no-repeat;
  153. background-position: right;
  154. padding-right:8px;
  155.  
  156. }
  157. /*---
  158. /*------------------------*/
  159. /* PAGE SPECIFIC ELEMENTS */
  160. /*------------------------*/
  161.  
  162. /* --- Home --- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement