-
Notifications
You must be signed in to change notification settings - Fork 0
/
grave-dark.css
35 lines (31 loc) · 945 Bytes
/
grave-dark.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
@import "src/vendor/reset.css";
@import "src/text.css";
@import "src/figure.css";
@import "src/form.css";
@import "src/button.css";
@import "src/structure.css";
@import "src/tooltip.css";
:root {
--global-page-background-color: #36393e;
--global-font-color: #a7a7a7;
--global-font-family: "Times New Roman", Times, serif;
--global-form-background-color: #ecf0f1;
--global-form-background-color-active: #dce0e1;
--global-form-background-color-valid: #ecf0f1;
--global-form-font-color: #7f8c8d;
--global-form-shadow-color: 0 3px 0 #7f8c8d;
--global-form-shadow-color-active: 0 1px 0 #7f8c8d;
--global-text-code-background-color: rgba(40, 43, 48, 1);
--image-width: 20rem;
font-size: 16px;
}
* {
box-sizing: border-box;
}
body {
background-color: var(--global-page-background-color);
font-family: 'Roboto', sans-serif;
max-width: 970px;
margin: 0 auto;
padding: 0 15px;
}