forked from substance/substance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
substance-pagestyle.css
51 lines (42 loc) · 1012 Bytes
/
substance-pagestyle.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
/* Inline Elements: Defaults
------------------------------------------------------- */
@import './_variables.css';
body,
input,
textarea {
color: var(--default-text-color);
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Arial", sans-serif;
font-size: var(--default-font-size);
min-height: 30px;
line-height: 1.5;
/*-webkit-font-smoothing:antialiased;*/
}
h1, h2, h3, h4, h5, h6 {
font-weight: var(--strong-font-weight);
margin:0;
}
h1 {
font-size: var(--h1-font-size);
}
h2 {
font-size: var(--h2-font-size);
}
h3 {
font-size: var(--h3-font-size);
}
/* Not recommended to use */
h4, h5, h6 { font-size: var(--h4-font-size); }
.strong,
strong { font-weight: var(--strong-font-weight); }
.emphasis, em { font-style: italic; }
/* Links */
a {
color: var(--link-color);
text-decoration:none;
}
a:focus {
outline: 1px solid var(--focus-outline-color);
}
button:focus {
outline: 1px solid var(--focus-outline-color);
}