]> BookStack Code Mirror - bookstack/blob - resources/sass/_html.scss
Add footer element, styles, and associated settings
[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 }
19
20 body {
21   font-size: $fs-m;
22   line-height: 1.6;
23   color: #444;
24   -webkit-font-smoothing: antialiased;
25   background-color: #F2F2F2;
26   height: 100%;
27   display: flex;
28   flex-direction: column;
29 }