-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
122 lines (108 loc) · 1.88 KB
/
style.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body, html {
margin: 0;
padding: 0;
background-color: black;
}
* {
font-family: sans-serif;
}
.fullscreen {
width: 100vw;
height: 100vh;
overflow: hidden;
}
.fullscreen > * {
width: 100%;
height: 100%;
}
.overlay {
position: fixed;
width: 100%;
height: 100%;
}
.overlay h2 {
position: fixed;
left: 50%;
top: 80%;
color: rgb(31, 179, 68);
transform: translate(-50%, -50%);
text-shadow: 0px 0px 5px rgb(0, 173, 52);
}
.overlay .show {
display: inline-block;
}
.overlay .hide {
display: none;
}
a.back {
display: block;
padding: 5px 10px;
background: #fff;
border: 1px solid #ccc;
cursor: pointer;
text-decoration: none;
color: #000;
}
a.back:hover {
background: #ddd;
}
#main-menu {
top: 50%;
left: 50%;
right: 50%;
bottom: 50%;
position: absolute;
}
.main-menu .main-menu-contents {
transform: translate(-50%, -50%);
background-color: rgb(22, 22, 22);
color: rgb(248, 110, 110);
width: 20vw;
height: 4vw;
text-align: center;
font-size: 3vw;
margin: 4px 2px;
opacity: 0.6;
transition: 0.3s;
cursor: pointer;
}
.main-menu-contents:hover {
background-color: rgb(95, 0, 0);
}
.options-menu {
display: none;
top: 50%;
left: 50%;
right: 50%;
bottom: 50%;
position: absolute;
}
.options-menu .options-contents {
display: none;
transform: translate(-50%, -50%);
background-color: rgb(22, 22, 22);
color: rgb(248, 110, 110);
width: 20vw;
height: 4vw;
text-align: center;
font-size: 3vw;
margin: 4px 2px;
opacity: 0.6;
transition: 0.3s;
cursor: pointer;
}
.input-label {
display: inline-block;
text-align: right;
font-size: 2vw;
color: white;
}
.endingScene {
display: none;
text-align: center;
top: 50%;
left: 50%;
right: 50%;
bottom: 50%;
color: gold;
}