Dewinta

CSS File

Dec 11th, 2016
1,447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.73 KB | None | 0 0
  1. * {margin:0}
  2.  
  3. body {
  4.           font-family:arial,segoe ui;  
  5.          }
  6.  
  7. .wrap {
  8.             width:1000px;
  9.             height:750px;
  10.             margin:0 auto;          
  11.           }
  12.  
  13. .menu {
  14.             width:100%;
  15.             height:50px;
  16.             background:blue;
  17.             border-radius:10px;
  18.             margin:auto;
  19.             box-shadow:5px 5px black;
  20.             align:center;
  21.      }
  22.  
  23. .header{
  24.             width:auto;
  25.             background:red;
  26.             padding:20px;
  27.             color:#fff;
  28.             height:150px;
  29.             border-radius:10px;
  30.             margin:auto;
  31.             box-shadow:5px 5px black;
  32.             align:center;
  33.           }
  34.  
  35. .main {
  36.             width:100%;
  37.             height:740px;
  38.             background:;
  39.             border-radius:15px;
  40.             margin:auto;
  41.             box-shadow:5px 5px black;
  42.             align:center;
  43.          }
  44.  
  45. .sidebar1{
  46.             float:right;
  47.             width:18%;
  48.             height:700px;
  49.             background:blue;
  50.             padding:2%;
  51.             }
  52.  
  53. .content {
  54.             float:center;
  55.             width:80%;
  56.             height:700px;
  57.             background:green;
  58.             padding:2%;
  59.             min-height:400px;
  60.             align:center;
  61.      }
  62.  
  63. .sidebar {
  64.             float:left;
  65.             width:18%;
  66.             height:700px;
  67.             background:blue;
  68.             padding:2%;
  69.            }
  70.  
  71. .clear {clear:both}
  72.  
  73. .footer {
  74.             width:auto;
  75.             height:35px;
  76.             padding:5px 10px;
  77.             background:red;
  78.             color:#fff;
  79.             border-radius:10px;
  80.             margin:auto;
  81.             box-shadow:5px 5px black;
  82.             align:center;
  83.      }
Advertisement
Add Comment
Please, Sign In to add comment