-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
46 lines (46 loc) · 737 Bytes
/
main.css
File metadata and controls
46 lines (46 loc) · 737 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
body {
background-color: #000000;
}
h1 {
color: #ffffff;
}
h2 {
color: #ffffff;
}
h3 {
color: #ffffff;
}
h4 {
color: #ffffff;
}
h5 {
color: #ffffff;
}
h6 {
color: #ffffff;
}
p {
color: #ffffff;
}
a:link {
color: #3333FF;
}
a:visited {
color: #9933CC;
}
a:hover {
color: #3333FF;
}
a:active {
color: #FF3333;
}
ul {
list-style: none; /* Remove default bullets */
}
ul li::before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
color: #ffffff; /* Change the color */
display: inline-block; /* Needed to add space between the bullet and the text */
width: 1em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}