-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (89 loc) · 1.62 KB
/
style.css
File metadata and controls
105 lines (89 loc) · 1.62 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;500&display=swap');
canvas {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#menu {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 600px;
}
.button {
position: absolute;
display: block;
left: 50%;
transform: translate(-50%, -50%);
font-family: 'Roboto Mono', monospace;
font-size: 40px;
color: black;
text-shadow: 2px 2px 4px #000000;
border: 2px solid black;
cursor: pointer;
text-align: center;
}
#start {
top: 20%;
width: 100%;
}
#settings {
top: 50%;
width: 100%;
}
#settings.text {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
}
#mapSettings::before {
content: "Map Settings: ";
}
#mapSettings {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#info.button {
top: 80%;
width: 100%;
}
#info.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.text {
font-family: 'Roboto Mono', monospace;
font-size: 20px;
color: black;
text-shadow: 2px 2px 4px #000000;
text-align: center;
}
a {
text-decoration: underline;
color: rgb(50, 64, 187);
cursor: pointer;
}
a:hover {
color: rgb(20, 38, 200);
}
#back {
position: absolute;
top: -2vh;
left: -11.4vh;
}
#info.info {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
height: 600px;
}