meshviewer/scss/modules/_base.scss
2017-02-04 03:01:17 +01:00

72 lines
807 B
SCSS

body {
-webkit-tap-highlight-color: transparent; // sass-lint:disable-line no-vendor-prefixes
background: $color-white;
color: $color-black;
font-family: $font-family;
font-size: $font-size;
overflow: hidden;
overflow-y: scroll;
}
header {
background: transparentize($color-black, .98);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: bold;
}
h1 {
font-size: 2em;
padding: .67em 0;
}
h2 {
font-size: 1.5em;
padding: .83em 0;
}
h3 {
font-size: 1.17em;
padding: 1em 0;
}
h2,
h3 {
padding-left: $button-distance;
padding-right: $button-distance;
}
p,
pre,
ul,
h4 {
padding: 0 $button-distance 1em;
}
img {
max-width: 100%;
}
a {
color: $color-online;
text-decoration: none;
}
p {
line-height: 1.67em;
}
strong {
font-weight: bold;
}
.hide {
display: none;
}