-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
42 lines (29 loc) · 1017 Bytes
/
stylesheet.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Mini CSS reset and basic typography
Published under MIT licencen by vladocar:
https://github.com/vladocar/Basic-CSS-Typography-Reset
*/
* {box-sizing: border-box}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%
}
/* General settings */
body {
margin: 0;
font: 1em/1.6 system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Droid Sans, Helvetica Neue, Fira Sans, sans-serif;
font-weight: 400;
font-style: normal;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
color: #111
}
img, iframe {border: none}
/* Headlines */
h1,h2,h3,h4,h5,h6 {margin: 0.6em 0; font-weight: normal}
h1 {font-size: 2.625em; line-height: 1.2}
h2 {font-size: 1.625em; line-height: 1.2}
h3 {font-size: 1.3125em;line-height: 1.24}
h4 {font-size: 1.1875em;line-height: 1.23}
h5,h6 {font-size: 1em; font-weight:bold}
table {border-collapse: collapse;border-spacing: 0}
th, td {text-align: left;vertical-align: top}