_layout.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. body {
  2. overflow-y: scroll !important;
  3. }
  4. .grw-logo {
  5. svg {
  6. width: $grw-logo-width;
  7. height: $grw-navbar-height;
  8. padding: ($grw-logo-width - $grw-logomark-width) / 2;
  9. }
  10. }
  11. .confidential {
  12. font-weight: bold;
  13. }
  14. .grw-modal-head {
  15. font-size: 1em;
  16. border-bottom: 1px solid $gray-500;
  17. }
  18. // padding settings for GrowiNavbarBottom
  19. .page-wrapper {
  20. padding-bottom: $grw-navbar-bottom-height;
  21. @include media-breakpoint-up(md) {
  22. padding-bottom: unset;
  23. }
  24. }
  25. .main {
  26. margin-top: 1rem;
  27. }
  28. .grw-fab {
  29. position: fixed;
  30. right: 1.5rem;
  31. bottom: 3rem;
  32. z-index: $zindex-fixed;
  33. transition: all 200ms linear;
  34. .btn-create-page {
  35. width: 60px;
  36. height: 60px;
  37. font-size: 24px;
  38. box-shadow: 2px 3px 6px #0000005d;
  39. svg {
  40. width: 28px;
  41. height: 28px;
  42. }
  43. }
  44. .btn-scroll-to-top {
  45. width: 40px;
  46. height: 40px;
  47. opacity: 0.4;
  48. svg {
  49. width: 18px;
  50. height: 18px;
  51. }
  52. }
  53. }
  54. // printable style
  55. @media print {
  56. padding: 30px;
  57. a:after {
  58. display: none !important;
  59. }
  60. .main {
  61. header {
  62. border-bottom: solid 1px $secondary;
  63. h1 {
  64. font-size: 2em;
  65. color: black;
  66. }
  67. }
  68. .row {
  69. display: block !important;
  70. }
  71. .revision-toc {
  72. float: none;
  73. max-width: 100%;
  74. margin-bottom: 20px;
  75. font-size: 0.9em;
  76. border: solid 1px $gray-400;
  77. .revision-toc-head {
  78. display: inline-block;
  79. float: none;
  80. }
  81. .revision-toc-content.collapse {
  82. display: block;
  83. height: auto;
  84. }
  85. }
  86. .meta {
  87. margin-top: 32px;
  88. color: $secondary;
  89. border-top: solid 1px $gray-300;
  90. }
  91. }
  92. }
  93. .system-version {
  94. position: fixed;
  95. right: 0.5em;
  96. bottom: 0;
  97. opacity: 0.6;
  98. > span {
  99. margin-left: 0.5em;
  100. }
  101. }