meshviewer/scss/modules/_base.scss

72 lines
807 B
SCSS
Raw Normal View History

body {
2017-02-04 02:01:17 +00:00
-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;
2017-02-04 01:27:28 +00:00
overflow: hidden;
overflow-y: scroll;
}
header {
2016-06-01 19:21:21 +00:00
background: transparentize($color-black, .98);
}
2017-02-04 02:01:17 +00:00
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;
}
2017-02-04 02:01:17 +00:00
h2,
h3 {
2016-06-19 11:14:13 +00:00
padding-left: $button-distance;
padding-right: $button-distance;
}
2017-02-04 02:01:17 +00:00
p,
pre,
ul,
h4 {
2016-06-19 11:14:13 +00:00
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;
}
2016-06-01 20:56:26 +00:00
2016-06-03 18:19:35 +00:00
.hide {
2016-06-01 20:56:26 +00:00
display: none;
}