Advertisement
Guest User

Untitled

a guest
Oct 29th, 2022
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.62 KB | Source Code | 0 0
  1. *,
  2. *::before,
  3. *::after{
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. }
  8.  
  9.  
  10. body{
  11.     background-color: #696969;
  12. }
  13.  
  14.  
  15.  
  16. .content{
  17.     display:flex;
  18.     flex-direction:column;
  19.  
  20. }
  21.  
  22. .left_sidebar{
  23.   flex:1;
  24.   order:1;  
  25. }
  26. .cluster{
  27.     flex:2;
  28.     order:2;  
  29.    
  30. }
  31. .right_sidebar{
  32.     flex: 1;
  33.     order:3;  
  34. }
  35.  
  36. header{
  37.     display: flex;
  38.     background-color: aliceblue;
  39.     position: relative;
  40. }
  41. .reload{
  42. position: absolute;
  43. right:0;
  44. top: 0;
  45. }
  46.    
  47.  
  48. .close{
  49.     position: absolute;  
  50.     bottom: 0;
  51.     right:0;
  52. }
  53. .loupe{
  54.     position: absolute;
  55.     bottom:0px;
  56.     right:32px;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement