-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy paththeme.scss
87 lines (69 loc) · 1.16 KB
/
theme.scss
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body,
html {
position: relative;
overflow-x: hidden;
width: 100%;
height: 100%;
}
html {
text-size-adjust: 100%;
}
body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: var(--body-background);
color: var(--body-color);
box-sizing: border-box;
}
input,
button,
select,
textarea {
font-family: inherit;
color: var(--input-background-contrast);
}
h1,
h2,
h3,
h4,
h5 {
color: var(--content-color);
}
button {
border: 0;
outline: 0;
background: transparent;
margin: 0;
cursor: pointer;
user-select: none;
padding: 0 var(--padding-0_5x);
}
section {
padding: var(--padding-2x) var(--padding-2x) var(--footer-height);
max-width: var(--section-max-width);
margin: 0 auto;
}
p {
margin: var(--padding) 0;
}
ul {
padding-inline-start: var(--padding-2x);
margin: 0;
}
/** Input */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
appearance: none;
margin: 0;
}
/* Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
hr {
border: 0;
border-bottom: 1px solid currentColor;
margin-bottom: var(--padding);
}