Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.03 KB | None | 0 0
  1. body {
  2.     margin: 0px;
  3.     padding: 0px;
  4.     background: #fff;
  5.     color: #363636;
  6.     font-family: Arial, Helvetica, sans-serif;
  7.     font-size: 12pt;
  8.     font-weight: 300;
  9. }
  10.  
  11.  
  12. h1 {
  13.     margin: 0;
  14.     padding: 0;
  15. }
  16.  
  17. p {
  18.     line-height: 190%;
  19. }
  20.  
  21.  
  22. a {
  23.     color: #171717;
  24. }
  25.  
  26. a:hover {
  27.     text-decoration: none;
  28. }
  29.  
  30.  
  31.  
  32. /*********************************************************************************/
  33. /* List Styles                                                                   */
  34. /*********************************************************************************/
  35.  
  36.     ul.style1
  37.     {
  38.         margin: 0;
  39.         padding: 0;
  40.         list-style: none;
  41.     }
  42.    
  43.     ul.style1 li
  44.     {
  45.         border-top: solid 1px #E5E5E5;
  46.         padding: 0.80em 0;
  47.     }
  48.    
  49.     ul.style1 li:first-child
  50.     {
  51.         border-top: 0;
  52.         padding-top: 0;
  53.     }
  54.  
  55.     ul.style2
  56.     {
  57.         margin: 0;
  58.         padding: 0;
  59.         list-style: none;
  60.     }
  61.    
  62.     ul.style2 li
  63.     {
  64.         border-top: solid 1px #E5E5E5;
  65.         padding: 0.80em 0;
  66.     }
  67.    
  68.     ul.style2 li:first-child
  69.     {
  70.         border-top: 0;
  71.         padding-top: 0;
  72.     }
  73.  
  74.  
  75.  
  76. /*********************************************************************************/
  77. /* Heading Titles                                                                */
  78. /*********************************************************************************/
  79.  
  80.  
  81. #container {
  82.     width: 100%;
  83.     /* setting the left/right width to auto will center the content */
  84.     margin: 0px auto;
  85.     background: #FFFFFF ;
  86.     padding:10px 0px;
  87.     }
  88.  
  89. #container h2 {
  90.         text-transform: uppercase;
  91.         letter-spacing: 0.20em;
  92.         font-weight: 700;
  93.         font-size: 2em;
  94.         color: #00AABB;
  95.     }
  96.    
  97.  
  98.  
  99.  
  100.  
  101. /* ---------------------
  102.    for Header area
  103. --------------------- */
  104.  
  105. header
  106. {
  107.     background: #848484;
  108.     text-align: center;
  109. }
  110.  
  111.  
  112. header h1{
  113.         letter-spacing: 0.0em;
  114.         text-transform: uppercase;
  115.         font-size: 3em;
  116.         padding: 1.1em 0;
  117.     }
  118.  
  119.    
  120. header a {
  121.         text-decoration: none;
  122.         color: #81BEF7;
  123.     }
  124.    
  125. header a:visited {
  126.         text-decoration: none;
  127.         color: #81BEF7;
  128.     }
  129.  
  130.  
  131.  
  132. nav{
  133.     background: #00AABB;
  134.     height: 90px;
  135.     width:100%;
  136. }
  137.  
  138.  
  139. nav ul {
  140.     margin: 0;
  141.     padding: 35px 0px 0px 0px; /* top right bottom left */
  142.     text-align: center;
  143. }
  144.  
  145. nav li {
  146.     display: inline-block;
  147. }
  148.  
  149. nav a {
  150.     display: inline-block;
  151.     letter-spacing: 2px;
  152.     padding: 20px 40px; /* top/bottom and right/left */
  153.     text-decoration: none;
  154.     text-align: center;
  155.     text-transform: uppercase;
  156.     font-size: 0.80em;
  157.     border: none;
  158.     color: #FFF;
  159. }
  160.  
  161. nav a:hover, nav .current a {
  162.     text-decoration: none;
  163. }
  164.  
  165. nav .current a {
  166.     background: #008C9A;
  167. }
  168.  
  169. /** PAGE */
  170.  
  171.  
  172.  
  173.  
  174.  
  175. /*********************************************************************************/
  176. /* footer                                                                     */
  177. /*********************************************************************************/
  178.  
  179. footer{
  180.     padding: 1em 0em;
  181.     text-align: center;
  182.     background: #424242;
  183.     position:absolute;
  184.     width:100%;
  185.     bottom:0px;
  186.     }
  187.    
  188. footer p{
  189.     letter-spacing: 0.20em;
  190.     text-align: center;
  191.     text-transform: uppercase;
  192.     font-size: 0.80em;
  193.     color: #6F6F6F;
  194.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement