Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. * {
  2. -moz-box-sizing: border-box;
  3. box-sizing: border-box;
  4. }
  5.  
  6. aside, article, div {
  7. min-height: 50px;
  8. background-color: rgba(0, 0, 0, 0.5);
  9. }
  10.  
  11. section {
  12. *zoom: 1;
  13. width: auto;
  14. max-width: 800px;
  15. float: none;
  16. display: block;
  17. margin-right: auto;
  18. margin-left: auto;
  19. padding-left: 0;
  20. padding-right: 0;
  21. }
  22. section:before, section:after {
  23. content: '';
  24. display: table;
  25. }
  26. section:after {
  27. clear: both;
  28. }
  29.  
  30. .sidebar aside {
  31. *zoom: 1;
  32. float: left;
  33. clear: none;
  34. text-align: inherit;
  35. width: 22.75%;
  36. margin-left: 0%;
  37. margin-right: 3%;
  38. }
  39. .sidebar aside:before, .sidebar aside:after {
  40. content: '';
  41. display: table;
  42. }
  43. .sidebar aside:after {
  44. clear: both;
  45. }
  46. .sidebar aside:last-child {
  47. margin-right: 0%;
  48. }
  49. .sidebar article {
  50. *zoom: 1;
  51. float: left;
  52. clear: none;
  53. text-align: inherit;
  54. width: 74.25%;
  55. margin-left: 0%;
  56. margin-right: 3%;
  57. }
  58. .sidebar article:before, .sidebar article:after {
  59. content: '';
  60. display: table;
  61. }
  62. .sidebar article:after {
  63. clear: both;
  64. }
  65. .sidebar article:last-child {
  66. margin-right: 0%;
  67. }
  68.  
  69. .three article {
  70. *zoom: 1;
  71. float: left;
  72. clear: none;
  73. text-align: inherit;
  74. width: 31.33333%;
  75. margin-left: 0%;
  76. margin-right: 3%;
  77. }
  78. .three article:before, .three article:after {
  79. content: '';
  80. display: table;
  81. }
  82. .three article:after {
  83. clear: both;
  84. }
  85. .three article:last-child {
  86. margin-right: 0%;
  87. }
  88.  
  89. .four article {
  90. *zoom: 1;
  91. float: left;
  92. clear: none;
  93. text-align: inherit;
  94. width: 22.75%;
  95. margin-left: 0%;
  96. margin-right: 3%;
  97. }
  98. .four article:before, .four article:after {
  99. content: '';
  100. display: table;
  101. }
  102. .four article:after {
  103. clear: both;
  104. }
  105. .four article:last-child {
  106. margin-right: 0%;
  107. }
  108.  
  109. .five article {
  110. *zoom: 1;
  111. float: left;
  112. clear: none;
  113. text-align: inherit;
  114. width: 17.6%;
  115. margin-left: 0%;
  116. margin-right: 3%;
  117. }
  118. .five article:before, .five article:after {
  119. content: '';
  120. display: table;
  121. }
  122. .five article:after {
  123. clear: both;
  124. }
  125. .five article:last-child {
  126. margin-right: 0%;
  127. }
  128.  
  129. .hero .content {
  130. *zoom: 1;
  131. float: left;
  132. clear: none;
  133. text-align: inherit;
  134. width: 58.8%;
  135. margin-left: 0%;
  136. margin-right: 3%;
  137. }
  138. .hero .content:before, .hero .content:after {
  139. content: '';
  140. display: table;
  141. }
  142. .hero .content:after {
  143. clear: both;
  144. }
  145. .hero .content:last-child {
  146. margin-right: 0%;
  147. }
  148. .hero .tiles {
  149. *zoom: 1;
  150. float: left;
  151. clear: none;
  152. text-align: inherit;
  153. width: 38.2%;
  154. margin-left: 0%;
  155. margin-right: 3%;
  156. }
  157. .hero .tiles:before, .hero .tiles:after {
  158. content: '';
  159. display: table;
  160. }
  161. .hero .tiles:after {
  162. clear: both;
  163. }
  164. .hero .tiles:last-child {
  165. margin-right: 0%;
  166. }
  167. .hero .tiles ul {
  168. list-style-type: none;
  169. padding: 0;
  170. margin: 0;
  171. }
  172. .hero .tiles ul li {
  173. *zoom: 1;
  174. float: left;
  175. clear: none;
  176. text-align: inherit;
  177. width: 50%;
  178. margin-left: 0%;
  179. margin-right: 0%;
  180. position: relative;
  181. padding: 0.5em;
  182. }
  183. .hero .tiles ul li:before, .hero .tiles ul li:after {
  184. content: '';
  185. display: table;
  186. }
  187. .hero .tiles ul li:after {
  188. clear: both;
  189. }
  190. .hero .tile {
  191. border: 1px solid blue;
  192. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement