]> BookStack Code Mirror - bookstack/blob - resources/sass/_html.scss
Merge branch 'footer-links' of git://github.com/james-geiger/BookStack into james...
[bookstack] / resources / sass / _html.scss
1 * {
2   box-sizing: border-box;
3   outline-color: var(--color-primary);
4   outline-width: 1px;
5 }
6
7 *:focus {
8   outline-style: dotted;
9 }
10
11 html {
12   height: 100%;
13   overflow-y: scroll;
14   background-color: #F2F2F2;
15   &.flexbox {
16     overflow-y: hidden;
17   }
18   &.dark-mode {
19     background-color: #111;
20   }
21 }
22
23 body {
24   font-size: $fs-m;
25   line-height: 1.6;
26   @include lightDark(color, #444, #AAA);
27   -webkit-font-smoothing: antialiased;
28   background-color: #F2F2F2;
29   height: 100%;
30   display: flex;
31   flex-direction: column;
32 }