Advertisement
Guest User

Untitled

a guest
May 16th, 2015
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.43 KB | None | 0 0
  1.  
  2.  
  3. root {
  4.     display: block;
  5. }
  6.  
  7. *{
  8.     padding: 0px;
  9.     margin: 0px;
  10. }
  11. body{    
  12.     text-align:center;
  13.     background-color: black;
  14. }
  15. #login_in{
  16.     position: absolute;
  17.     top: 10px;
  18.     left: 600px;
  19. }
  20. #date{
  21.     position: absolute;
  22.     top: 10px;
  23.     left: 400px;
  24.     float: right;
  25. }
  26. #invalid_login{    
  27.     position: absolute;
  28.     top: 10px;
  29.     left:400px;
  30.     float:right;
  31. }
  32. #user_info{
  33.     position:absolute;
  34.     top:10px;
  35.     left:650px;
  36.  
  37. }
  38. #wrong_user{
  39.     position:absolute;
  40.     top:10px;
  41.     left:400px;
  42.     float:right;
  43. }
  44. .logmeout{
  45.     position:absolute;
  46.     top:10px;
  47.     left:1000px;
  48.     float:right;
  49.     text-align: right;
  50. }
  51.  
  52. #big_wrapper{
  53.     text-align:left;
  54.     width: 1000px;
  55.     border: 3px black;
  56.     margin: 60px auto;
  57. }
  58.  
  59. #top_header{
  60.     font-weight: bold;
  61.     font-size: 20px;
  62.     font-style: normal;
  63.     background-color: #020202;
  64.     color: white;    
  65.     padding:20px;
  66.     text-align: center;    
  67. }
  68.  
  69. #links{
  70.     border: 2px bisque solid;
  71.     font-style: italic;
  72.     background-color: #020202;
  73.     color: black;
  74.     padding: 10px;
  75. }
  76. #links li{
  77.     list-style: none;
  78.     font-size: 14px;
  79.     display: inline-block;    
  80.     padding-left: 80px;
  81.     padding-right: 80px;
  82. }
  83. li a.hover{
  84.     background-color: aqua;
  85.     color : white;
  86.     list-style: none;  
  87. }
  88. #main_content{
  89.     float:left;
  90.     width: 660px;    
  91. }
  92. #main_article{
  93.     padding:20px;
  94.     margin:30px;
  95.     border: 2px black double;
  96. }
  97. #inner_article{
  98.     margin-top:20px;
  99.     padding:4px;
  100.     border: 2px black solid;
  101. }
  102. #inner_artcile_heading{
  103.     font-weight: bold;    
  104. }
  105. #inner_artcile_dealer{
  106.     font-style: italic;    
  107. }
  108. #quantity{    
  109.     float: right;  
  110. }
  111. #add_to_cart{
  112.     position: absolute;
  113.     margin:1px;
  114.     float: right;  
  115.     top:240px;
  116.     left:700px;    
  117. }
  118. #total_cart_items{
  119.     position: absolute;
  120.     margin:1px;
  121.     float: right;  
  122.     top:240px;
  123.     left:400px;    
  124. }
  125. #finish_n_checkout{
  126.     position: absolute;
  127.     margin:1px;
  128.     float: right;  
  129.     top:210px;
  130.     left: 700px;    
  131.  
  132. }
  133.  
  134. #table_data_dont_update_this{
  135.     width:100px;
  136. }
  137. #updates{
  138.     float: left;
  139.     border: 2px black solid;
  140.     padding: 20px;
  141.     width: 200px;    
  142.     margin-top: 15px;
  143.     margin-bottom:10px;
  144. }
  145. #the_footer{
  146.     clear:both;
  147.     text-align:center;
  148.     padding: 20px;
  149.     border-top: 1px black solid;
  150.     background-color: #020202;
  151. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement