-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
46 lines (40 loc) · 840 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
@import url(https://carlinhos.dev.br/shared/styles/theme.css);
code-snippet {
display: block;
margin: 1rem 0;
letter-spacing: -0.05rem;
font-weight: 300;
--background_color: var(--bg_s);
--text_color: var(--color__text);
--button_color: var(--color__accent);
--font: var(--font__monospace);
}
* {
background-color: var(--color__background);
color: var(--color__text);
}
body {
max-width: 40rem;
margin: auto;
font-family: var(--font__body);
font-weight: 300;
}
code {
font-family: var(--font__monospace);
letter-spacing: -0.05rem;
font-weight: 300;
padding: 0 0.5rem;
background-color: var(--bg_s);
color: var(--color__accent);
border-radius: 1rem;
}
a {
color: var(--color__accent);
}
h1,
h2,
h3 {
color: var(--color__primary);
font-family: var(--font__heading);
font-weight: 600;
}