_layout.scss 868 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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: 10;
  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. &>*{
  30. display: inline-block;
  31. vertical-align: top;
  32. font-size: $base_font_size;
  33. }
  34. }
  35. }
  36. }
  37. // __ __ _
  38. // | \/ |__ _(_)_ _
  39. // | |\/| / _` | | ' \
  40. // |_| |_\__,_|_|_||_|
  41. main[role="main"]{
  42. padding-top: $header_height;
  43. }