Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | None | 0 0
  1. #logo
  2. {
  3.     font-size: 180%;
  4.     width: 100%;
  5.     text-align: center;
  6.     background-color: lightgrey;
  7.    
  8. }
  9.  
  10. #menu
  11. {
  12.     float: left;
  13.     width: 25%;
  14.     border-right: 1px solid black;
  15. }
  16.  
  17. #menu button
  18. {
  19.     width: 100%;
  20.     padding: 7%;
  21.     border: none;
  22.     border-radius: 5px;
  23.     background-color: red;
  24.     cursor: pointer;
  25. }
  26.  
  27. #content
  28. {
  29.     float: left;
  30.     width: 49.5%;
  31.     background-color: aqua;
  32.     border-right: 1px solid black;
  33. }
  34.  
  35. #sidebar
  36. {
  37.     float: left;
  38.     width: 25%;
  39.     background-color: lime;
  40. }
  41.  
  42. #footer
  43. {
  44.     width: 94%;
  45.     text-align: center;
  46.     padding: 3%;
  47.     font-size: 85%;
  48.     background-color: grey;
  49.     border: 1px solid black;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement