generated from sindresorhus/electron-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
52 lines (46 loc) · 750 Bytes
/
index.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
43
44
45
46
47
48
49
50
51
52
html,
body {
padding: 0;
margin: 0;
background: transparent;
}
/* Use OS default fonts */
body {
font-family: -apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen-Sans,
Ubuntu,
Cantarell,
'Helvetica Neue',
sans-serif,
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol';
text-rendering: optimizeLegibility;
font-feature-settings: 'liga', 'clig', 'kern';
}
header {
text-align: center;
}
header h1 {
font-size: 50px;
font-weight: 200;
margin: 0;
padding: 0;
opacity: 0.7;
}
header h2, h3 {
width: 50%;
display: inline;
}
header h2 { font-size: 30px}
header h3 { font-size: 15px}
.vertical-space {
margin-top: 3px;
}
.horizontal-line {
border-top: 3px solid #000000;
margin-bottom: 1px;
}