Advertisement
Guest User

Untitled

a guest
May 20th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.27 KB | None | 0 0
  1. div#z{
  2.     background-color: white;
  3.     position: absolute;
  4.     top: 10px;
  5.     right: 10px;
  6.     bottom: 10px;
  7.     left: 10px;
  8.     min-width: 1060px;
  9.     min-height: 400px;
  10. }
  11.  
  12. div#h{
  13.     background-color: grey;
  14.     color: blue;
  15.     font-weight: bold;
  16.     text-align: center;
  17.     position: absolute;
  18.     top: 10px;
  19.     right: 10px;
  20.     left: 10px;
  21.     height: 50px;
  22.    
  23. }
  24.  
  25. div#l{
  26.     background-color: yellow;
  27.     position: absolute;
  28.     top: 70px;
  29.     left: 10px;
  30.     min-height: 30px;
  31.     width: 200px;
  32. }
  33.  
  34. div#r{
  35.     background-color: yellow;
  36.     position: absolute;
  37.     top: 70px;
  38.     right: 10px;
  39.     min-height: 100px;
  40.     width: 200px;
  41.  
  42.  
  43. }
  44.  
  45. div#c{
  46.     background-color: yellow;
  47.     position: absolute;
  48.     top: 70px;
  49.     right: 220px;
  50.     left: 220px;
  51.     min-height: 200px;
  52.     min-width: 380px;
  53. }
  54.  
  55. div#f{
  56.     background-color: grey;
  57.     text-align: center;
  58.     position: absolute;
  59.     bottom: 10px;
  60.     right: 10px;
  61.     left: 10px;
  62.     height: 50px;
  63. }
  64.  
  65.  
  66. #l ul{
  67.     list-style: none;
  68.     padding: 0px;
  69.     margin: 0px;
  70. }
  71.  
  72. #l a{
  73.     display: block;
  74.     background-color: yellow;
  75.     color: black;
  76.     border: 1px outset white;
  77.     text-decoration: none;
  78.     padding: 5px;
  79. }
  80.  
  81. #r form{
  82.     margin: 10px;
  83. }
  84.  
  85. #r input{
  86.     margin-bottom: 5px;
  87. }
  88.  
  89. #c table{
  90.     border: 1px solid grey;
  91.     margin: 10px 30px;
  92. }
  93.  
  94. #c td, th{
  95.     border: 1px solid grey;
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement