Guest User

Untitled

a guest
Oct 12th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. .page {
  2. width: 100%;
  3. height: 100%;
  4. padding: 20px;
  5.  
  6. &-header {
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. width: 100%;
  11. max-width: 1140px;
  12. height: 80px;
  13. margin: 0 auto;
  14. border-bottom: 2px solid #007fff;
  15. font-size: 36px;
  16. font-weight: 700;
  17. color: #0e63c7;
  18. }
  19.  
  20. &-body {
  21. display: flex;
  22.  
  23. width: 100%;
  24. max-width: 1140px;
  25. min-height: calc(100vh - 120px);
  26. margin: 0 auto;
  27.  
  28. &__sidebar {
  29. width: 300px;
  30. border-right: 2px solid #007fff;
  31. }
  32.  
  33. &__details {
  34. width: 100%;
  35. }
  36. }
  37. }
Add Comment
Please, Sign In to add comment