_layout.scss 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. body, html{
  2. position: relative;
  3. width: 100%;
  4. height:100%;
  5. font-family: sans-serif;
  6. font-style: normal;
  7. margin:0;
  8. padding:0;
  9. }
  10. body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs{
  11. padding-top: 24px!important;
  12. }
  13. // _ _ _
  14. // | || |___ __ _ __| |___ _ _
  15. // | __ / -_) _` / _` / -_) '_|
  16. // |_||_\___\__,_\__,_\___|_|
  17. header[role="banner"]{
  18. background-color: #fff;
  19. overflow: visible;
  20. position: fixed;
  21. z-index: 20;
  22. width:100vw;
  23. // outline: 1px solid blue;
  24. height: $header_height;
  25. .wrapper{
  26. .header-block{
  27. min-height: 15px;
  28. font-size: 0;
  29. &.header-right{
  30. text-align: right;
  31. }
  32. &>*{
  33. display: inline-block;
  34. vertical-align: top;
  35. font-size: $base_font_size;
  36. text-align: left;
  37. }
  38. }
  39. }
  40. }
  41. // __ __ _
  42. // | \/ |__ _(_)_ _
  43. // | |\/| / _` | | ' \
  44. // |_| |_\__,_|_|_||_|
  45. main[role="main"]{
  46. padding-top: $header_height+8px;
  47. }