-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.stylez.css
More file actions
76 lines (64 loc) · 911 Bytes
/
styles.stylez.css
File metadata and controls
76 lines (64 loc) · 911 Bytes
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
body {
font-family: "Courier", "Roboto Slab", serif;
}
h1 {
padding-top: 5em;
}
h2 {
padding-top: 3em;
}
h3 {
padding-top: 1em;
}
h1,
h2,
h3 {
font-size: 1em;
text-align: center;
text-transform: uppercase;
transform: rotate(0.8deg);
}
h1:nth-child(2n),
h2:nth-child(3n),
h3:nth-child(3n + 1) {
transform: rotate(-0.8deg);
}
h1::before,
h2::before {
content: "~ ";
}
h1::after,
h2::after {
content: " ~";
}
/* these are events in a script */
blockquote {
color: red;
font-size: 1.2em;
font-weight: 700;
text-align: center;
}
blockquote > p::before {
content: "🚨";
}
blockquote > p::after {
content: "🚨";
}
#characters {
text-transform: capitalize;
color: #f08;
position: fixed;
z-index: 1;
background: #fff;
}
.inactive {
color: grey;
}
p.active,
h3.active {
color: black;
background: lightblue;
}
blockquote > p.active {
background: none;
}