Advertisement
coderbot

CSS Web Page

Jun 5th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.52 KB | None | 0 0
  1. body{
  2.     margin:0;
  3.     margin-top: 0px;
  4.     padding:0;
  5.     background-color: #85C2FF;
  6.     font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;;
  7. }
  8.  
  9. h1, h2, h3, h4, h5, h6{
  10.     font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;;
  11.     font-size:12px;
  12. }
  13. .outer{
  14.     width:900px;
  15.     margin:0 auto;
  16.     height:100%;
  17.     background-color: white;
  18.     border:1px dashed black;
  19.     border-top:0;
  20.     border-bottom: 0;
  21. }
  22. .header{
  23.     position:relative;
  24.     width:900px;
  25.     height:100px;
  26.     margin:0 auto;  
  27.     background-color: #009933;
  28. }
  29.  
  30. .header .image{
  31.     position:absolute;
  32.     top:0px;
  33.     left:0px;
  34.     float:left;
  35.     background-image:url('../img/chat_on.png');
  36.     background-repeat: no-repeat;
  37.     background-color: green;
  38.     background-color: #CCCCFF;
  39.     height:100px;
  40.     width:100px;
  41. }
  42.  
  43. .header .Title{
  44.     text-align:center;
  45.     margin-left:100px;
  46.     padding:16px 0px;
  47.     padding-right:74px;
  48.     color:#009933;
  49. }
  50. .header .Title:hover{
  51.     color:black;
  52. }
  53.  
  54. .content{
  55.     width:900px;
  56.     margin:0 auto;
  57.     height:273px;
  58.     border-top:1px solid black;
  59. }
  60.  
  61. .content .updates{
  62.     float:left;
  63.     margin:0;
  64.     width:46.9%;
  65.  
  66.     height:263px;
  67.     padding:10px 10px 0 35px;
  68.     border-right:1px solid black;
  69.     font-size: 20px;
  70. }
  71.  h3:hover{
  72.     color:#8D8D8D;
  73.     cursor: default;
  74. }
  75. h2:hover{
  76.     color:#8D8D8D; 
  77.     cursor: default;
  78. }
  79. .content .login{
  80.     float:left;
  81.     margin: 0 auto;  
  82.     padding-top:50px;
  83.     padding-left:70px;
  84.     font-size:20px;
  85. }
  86.  
  87. .important{
  88.     margin:0;
  89.     padding:0;
  90.     width:900px;
  91.     margin:0 auto;
  92.     height: 286px;
  93.     border-top:1px solid black;
  94. }
  95.  
  96. .important .points{
  97.     margin-top:0;
  98.     float:left;  
  99.     width:48%;
  100.     padding:10px 0 0 35px;
  101.     font-size: 20px;
  102.     border-right:1px solid black;
  103.     height:276px;
  104. }
  105. .important img{
  106.     float:right;  
  107.     margin-top:30px;
  108.     margin-right:80px;
  109.     padding: 5px 5px;
  110.     border: 1px solid black;
  111.     height: 200px;
  112. }
  113.  
  114. .stay {
  115.     margin:0;
  116.     padding:0;
  117.     width:900px;
  118.     margin:0 auto;
  119.     height:300px;
  120.     border-top:1px solid black;
  121. }
  122.  
  123. .stay img{
  124.     float:right;  
  125.     margin-top:30px;
  126.     margin-right:80px;
  127.     padding: 5px 5px;
  128.     border: 1px solid black;
  129.     height: 200px;
  130.  
  131. }
  132. .stay .notText{
  133.  
  134.     margin-top:0;
  135.     padding:10px 0 0 35px;
  136.     font-size:20px;
  137.     float:left;
  138.     width:48%;
  139.     height: 290px;
  140.     border-right:1px solid black;
  141. }
  142.  
  143. .footer{
  144.     width:900px;
  145.     margin:0 auto;
  146.     padding:0;
  147.     height:40px;
  148.     border-top:1px solid black;
  149.     background-color: #94B84D;
  150. }
  151.  
  152. .footer h4{
  153.     font-size:12px;
  154.     margin:0;
  155.     padding-top:14px;
  156.     color:gray;
  157.     text-align: center;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement