Advertisement
Guest User

Untitled

a guest
Dec 29th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. * {
  2.   margin:0;
  3. }
  4. /*  HEADER  */
  5. body {
  6.   font-family:Helvetica, Arial, sans-serif;
  7.   font-size:14px;
  8. }
  9.  
  10. h1 {
  11.   font-size:38px;
  12.   color:#333;
  13. }
  14.  
  15. h3 {
  16.   font-weight: normal;
  17.   font-size:15px;
  18. }
  19.  
  20. .container {
  21. }
  22.  
  23. section{
  24.   padding:35px 0;
  25. }
  26.  
  27. header, footer {
  28.   padding: 25px 0;
  29. }
  30.  
  31. header {
  32.   background: green;
  33. }
  34.  
  35. header ul {
  36.   margin:auto;
  37.   overflow: hidden;
  38.   padding:0 0;
  39.   background: pink;
  40.   width:48%;
  41.   border-bottom:5px solid #ec1cff;
  42. }
  43.  
  44. header ul li {
  45.   display:inline;
  46.   padding:0 25px;
  47. }
  48. header ul li:last-child{
  49.   padding-right:0;
  50. }
  51.  
  52. header ul li a {
  53.   font-weight:bold;
  54.   text-decoration: none;
  55.   color:#1c5cff;
  56. }
  57.  
  58. /*  .MAIN  */
  59.  
  60. .main {
  61.   background: yellow;
  62. }
  63.  
  64. article {
  65.   margin:auto;
  66.   background: red;
  67.   width:48%;
  68. }
  69.  
  70. article p {
  71.   padding-top:10px;
  72.   line-height: 1.5em;
  73. }
  74.  
  75. /*  .PREFOOTER  */
  76.  
  77. .prefooter {
  78.   margin:auto;
  79.   background: pink;
  80. }
  81. .prefooter h3{
  82.   padding:5px 0;
  83. }
  84.  
  85. .prefooter ul {
  86.   padding:0 25px;
  87. }
  88.  
  89. /*  FOOTER  */
  90.  
  91. footer {
  92.   background: blue;
  93. }
  94. footer p {
  95.   background: red;
  96.   width:50%;
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement