]>
BookStack Code Mirror - bookstack/blob - resources/sass/_html.scss
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of git://github.com/osmansorkar/BookStack into osmansorkar...
[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
}