BookStack/resources/assets/sass/_html.scss

22 lines
294 B
SCSS
Raw Normal View History

2015-07-12 19:01:42 +00:00
* {
box-sizing: border-box;
}
html {
2015-07-21 21:11:30 +00:00
background-color: #FFFFFF;
2015-07-12 19:01:42 +00:00
}
body {
font-family: $text;
font-size: $fs-m;
2015-08-30 16:53:30 +00:00
line-height: 1.6;
color: #616161;
2015-07-12 19:01:42 +00:00
-webkit-font-smoothing: antialiased;
}
2015-07-21 20:16:26 +00:00
table {
min-width: 100px;
td {
min-width: 10px;
padding: 4px 6px;
border: 1px solid #DDD;
}
}