Advertisement
Integery

Untitled

Dec 11th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.77 KB | None | 0 0
  1. body {
  2.   height: 740px;
  3.   display: flex;
  4.   flex-direction: column;
  5.   align-items: center;
  6.   margin: 0;
  7.   padding: 0;
  8.   margin-top: 10px;
  9. }
  10.  
  11. .all {
  12.   width: 80%;
  13.   height: 100%;
  14.   display: flex;
  15.   align-items: center;
  16. }
  17.  
  18. header {
  19.   border: 1px solid black;
  20.   width: 80%;
  21.   height: 20%;
  22. }
  23.  
  24. .sect {
  25.   display: flex;
  26.   align-items: center;
  27.   width: 100%;
  28.   height: 100%;
  29. }
  30.  
  31. .left {
  32.   border: 1px solid black;
  33.   width: 250px;
  34.   height: 100%;
  35.   text-align: left;
  36.   border-right: none;
  37. }
  38.  
  39. .right {
  40.   text-align: left;
  41.   border: 1px solid black;
  42.   width: 250px;
  43.   height: 100%;
  44.   border-left: none;
  45. }
  46.  
  47. section {
  48.   border: 1px solid black;
  49.   width: 60%;
  50.   height: 100%;
  51. }
  52.  
  53. footer {
  54.   border: 1px solid black;
  55.   width: 80%;
  56.   height: 20%;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement