-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
61 lines (55 loc) · 828 Bytes
/
main.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
55
56
57
58
59
60
h1 {
color: white;
}
h3 {
color: white;
}
a:link {
color: white;
}
a:visited {
color: white;
}
a:hover {
color: rgba(238, 4, 4, 0.849);
}
a:active {
color: rgb(0, 236, 253);
}
body {
font-family: Consolas,monaco,monospace;
max-width: 45em;
background-image: url("background.jpg");
background-repeat: no-repeat;
background-size: cover;
}
.bluebox {
border: 2px solid dodgerblue;
margin: 1em;
padding: 1em;
}
.yellowbox {
border: 2px solid gold;
margin: 1em;
padding: 1em;
}
page-container {
position: relative;
min-height: 100vh;
}
content-wrap {
padding-bottom: 2.5rem;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}
li {
color: white;
list-style: none;
}
li::before{
content: "\00BB";
}