-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathbase.css
More file actions
95 lines (81 loc) · 1.42 KB
/
Copy pathbase.css
File metadata and controls
95 lines (81 loc) · 1.42 KB
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
88
89
90
91
92
93
94
95
:root {
--workspace-background-color: #f0f2f5;
--heading-text-color: var(--header-text-color-dark);
}
.cauldron--theme-dark {
--workspace-background-color: var(--dark-workspace-color);
color-scheme: dark;
}
.cauldron--theme-light {
color-scheme: light;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
font-family: var(--base-font-family);
font-style: normal;
font-weight: 400;
color: var(--text-color-base);
margin: 0;
padding: 0;
background-color: var(--workspace-background-color);
font-size: var(--text-size-small);
}
:focus {
outline: 2px solid var(--focus);
outline-offset: var(--space-quarter);
}
h1 {
margin: 0;
padding: 18px 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
[role='heading'] {
color: var(--heading-text-color);
}
ul {
margin: 0;
padding: 0;
}
button {
font-family: var(--base-font-family);
font-weight: 500;
}
button,
[role='button'] {
display: inline-block;
zoom: 1;
line-height: normal;
vertical-align: middle;
text-align: center;
user-select: none;
-webkit-user-drag: none;
box-sizing: border-box;
border: 0;
}
a {
color: var(--link-text-color);
}
p {
line-height: var(--line-height-body);
}
.cauldron--theme-dark h1,
.cauldron--theme-dark h2,
.cauldron--theme-dark h3,
.cauldron--theme-dark h4,
.cauldron--theme-dark h5,
.cauldron--theme-dark h6,
.cauldron--theme-dark [role='heading'] {
--heading-text-color: white;
}