-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle22.css
More file actions
62 lines (45 loc) · 796 Bytes
/
Copy pathStyle22.css
File metadata and controls
62 lines (45 loc) · 796 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
body {
font-family: 'Courier New', Courier, monospace;
background-color: black;
color: white;
}
h1 {
color: lightblue;
}
a {
color: gray;
text-decoration: none;
}
a:hover {
color: rgb(16, 16, 178);
}
ul>li {
font-weight: bold;
}
h1+p {
background-color: #161822;
padding: 10px;
border-radius: 5px;
}
ul li:hover {
color: #4F8CC9;
}
ul li:nth-child(3) {
color: lightslategrey;
}
p:not(:first-of-type) {
text-decoration: underline;
}
/* ::before Pseudo-element */
ul li::before {
content: "🚀 ";
}
/* ::after Pseudo-element */
a::after {
content: " 🌌";
}
/* ::first-letter Pseudo-element */
p::first-letter {
font-size: 200%;
color: #FF7B72;
}