Advertisement
Guest User

Untitled

a guest
May 28th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.41 KB | None | 0 0
  1. body {
  2.     background: #f4f6fb url("../img/background.gif") repeat-x;
  3.     position: relative;
  4. }
  5. .header, .navigation, .main {overflow: hidden;} /*firefox fix*/
  6. html {overflow-y: scroll;} /*firefox fix*/
  7.  
  8. /* --- Header --- */
  9. .headerbig {
  10.     background: transparent url("../img/head_big.png") no-repeat;
  11.     height: 393px;
  12. }
  13.  
  14. .header_text {
  15.     margin-top: 40px;
  16.     color: #FFFFFF;
  17. }
  18.  
  19. .header_text h1 {font-size: 300%;}
  20. .header_text h3 {font-size: 160%; font-weight: 300;line-height: 120%;}
  21.  
  22. .brief {
  23.     background-image: url("../img/brief.bg.png");
  24.     background-repeat: no-repeat;
  25.     float: left;
  26.     outline: none;
  27.     display: block;
  28.     height: 40px;
  29.     padding-top: 5px;
  30.     margin-right: 5px;
  31.  
  32.     color: #444444;
  33.     font-size: 20px;
  34.     font-weight: bold;
  35.     text-decoration: none;
  36. }
  37.  
  38. .signup     {background-position:     0px 0px; width: 170px; padding-left: 25px;}
  39. .learnmore  {background-position:  -200px 0px; width: 160px; padding-left: 35px;}
  40. .signup:hover,  .learnmore:hover {color: #000000;}
  41. .LCD {
  42.     margin-top: 70px;
  43.     background-image: url("../img/LCD.png");
  44.     background-repeat: no-repeat;
  45.     height: 228px;
  46. z-index: -1;
  47. }
  48. .map {
  49.     width: 238px;
  50.     height: 148px;
  51.     margin-left: 113px;
  52.     margin-top: 10px;
  53. }
  54.  
  55.  
  56. /* --- Main --- */
  57. .main {
  58.     padding-bottom: 100px; /*footer size+50*/
  59.     padding-top: 28px;
  60.     font-size: 110%;
  61. }
  62.  
  63. div.main>div.clear {height: 40px;}
  64.  
  65. /* --- Footer --- */
  66. html, body {height: 100%;}
  67. html>body {min-height: 100%; height: auto;}
  68. #footer {
  69.     position: absolute;
  70.     bottom: 0px;
  71.     height: 40px; /*height—padding-top*/
  72.     padding-top: 10px;
  73.     width: 100%;
  74.  
  75.     background: transparent url("../img/footerbg.gif") repeat-x;
  76.     text-align: center;
  77.     color: #2a2a2a;
  78.     font-size: 100%;
  79. }
  80.  
  81. #footer a {
  82.     margin: 0px 10px 0px 10px;
  83.     color: #2a2a2a;
  84.     font-size: 100%;
  85.     text-decoration: none;
  86. }
  87.  
  88. #footer a:hover {text-decoration: underline;}
  89. #footer img {vertical-align: middle; padding-left: 10px;}
  90.  
  91. /* -- INNER PAGES ADD-in CSS -- */
  92. BODY.inner {background: #f4f6fb url("../img/backgroundi.gif") repeat-x;}
  93. .headerbigi {
  94.     background: transparent url("../img/head_bigi.png") no-repeat;
  95.     height: 105px;
  96. }
  97. .inner_title {
  98.     font-weight: bold;
  99.     font-size: 400%;
  100.     color: #FFFFFF;
  101.     padding-top: 20px;
  102. }
  103. .inner_pg {
  104.     padding-bottom: 80px; /*footer size+50*/
  105.     padding-top: 50px;
  106.     font-size: 120%;
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement