forked from MIT2024PuzzleHunt/MIT2024puzzlehunt.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
71 lines (59 loc) · 1.21 KB
/
theme.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
61
62
63
64
65
66
67
68
69
70
71
body{
background: url("https://1.bp.blogspot.com/-mLjswLW2ncU/X0GnmAIVGJI/AAAAAAAAHkE/uRBZ4kLlAX8czof_bBRBeJusJNlvrqADACLcBGAsYHQ/w210-h210/Tile.png");
color: white;
}
p {
font-family: 'Roboto', sans-serif;
color: white;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto Mono', monospace;
color: white;
}
#main-page-content #map-page-container {
width: 1200px;
max-width: 100%;
margin: 0 auto;
}
#main-page-content #map-page-container #map-container {
width: 1100px;
max-width: 92%;
margin: 30px auto;
position: relative;
}
.dropbtn {
background-color: #000000;
padding: 16px 26px 8px 26px;
font-size: 20px;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #000000;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
right: 0;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #424242}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #424242;
}
.active h5 {
color: black;
}