Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. body {
  2. width: 100%;
  3. margin: 0px;
  4. padding: 0px;
  5. display: flex;
  6. background-color: #abcabc;
  7. flex-direction:column;
  8. justify-content:space-between;
  9.  
  10. }
  11.  
  12. div {
  13. box-sizing: border-box;
  14. border-width: 0px 0px 2px 2px;
  15. border-color: #abcabc;
  16. border-style: solid;
  17. }
  18.  
  19. #header {
  20. float: left;
  21. width: 100%;
  22. background-color: #abcabc;
  23. }
  24.  
  25.  
  26. #navi {
  27. float: left;
  28. width: 30%;
  29. background-color: #feefee;
  30. height: 100%;
  31. padding: 15px;
  32. }
  33.  
  34. #blog {
  35. float:left;
  36. width: 70%;
  37. background-color: #876543;
  38. padding: 14px;
  39. height:100%;
  40. font-family: 'Solway', serif;
  41. font-size: 16pt;
  42. }
  43.  
  44. #footer {
  45. clear: both;
  46. width:100%;
  47. }
  48.  
  49. ul {
  50. list-style-type:None;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement