-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavourites.css
More file actions
58 lines (48 loc) · 1.02 KB
/
favourites.css
File metadata and controls
58 lines (48 loc) · 1.02 KB
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
body {
/* background-image: url('https://www.example.com/sparkle-tile.gif');
background-repeat: repeat; */
}
.container {
background-image: url('https://shadowthehedgehog.ca/assets/fav_bkgnd.png');
background-repeat: repeat;
font-family: "Lucida Console", Monaco, monospace;
width: 650px;
margin: 0 auto;
padding: 1rem;
background-attachment: fixed;
background-size: 500px;
}
h2 {
text-align: center;
color: #f2f2f2;
text-transform: uppercase;
letter-spacing: 5px;
}
ul {
list-style-type: none;
padding-left: 1rem;
margin-bottom: 1rem;
columns: 2;
column-gap: 10px;
}
li {
text-align: center;
margin-bottom: 1rem;
background-color: #f2f2f2;
padding: 0.5rem;
border: 3px dashed #363636;
color: #363636;
}
li a {
color: #363636;
text-decoration: none;
}
li a:visited {
color: #363636;
}
li a:hover,
li a:active {
color: #363636;
font-weight: bold;
text-decoration: none;
}