-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
54 lines (51 loc) · 919 Bytes
/
style.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
52
53
54
:root {
--primary-color-dark: hsl(205deg, 20%, 94%);
}
html,
body {
height: 100%;
}
:root {
--font-family: "Quicksand";
}
body {
font-family: "Quicksand", sans-serif !important;
}
tweet {
display: block;
max-width: 200px;
}
article {
background: black;
background: linear-gradient(to right, black, #111111);
}
h1 {
background: -webkit-linear-gradient(hotpink, var(--primary-color-dark));
background: linear-gradient(hotpink, var(--primary-color-dark));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
c-subtitle {
color: var(--color);
display: block;
font-family: monospace;
font-size: 60%;
font-style: italic;
}
@media screen and (min-width: 1023px) {
h1 {
font-size: 500%;
}
}
.hero {
background: radial-gradient(
circle at right top,
hotpink 8%,
hotpink 16%,
black 61%
);
}
code {
white-space: pre;
}