forked from AsphaltWorld/Fnaf-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomNight.module.css
More file actions
198 lines (167 loc) · 3.2 KB
/
CustomNight.module.css
File metadata and controls
198 lines (167 loc) · 3.2 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
.custom_night_container {
overflow: auto;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
color: white;
backdrop-filter: blur(7px) brightness(0.5);
display: flex;
flex-direction: column;
justify-content: space-evenly;
height: 100vh;
}
.github_icon {
width: fit-content;
height: fit-content;
position: absolute;
bottom: 2%;
right: 2%;
cursor: pointer;
transition: transform 200ms 50ms;
}
.github_icon a {
width: fit-content;
height: fit-content;
}
.github_icon:hover {
transform: scale(1.2);
transition: transform 200ms 50ms;
}
.custom_night_container h1 {
font-weight: 400;
margin-left: 30px;
opacity: 0.8;
}
.animatronics_container {
display: flex;
justify-content: space-evenly;
}
.animatronic {
display: flex;
flex-direction: column;
align-items: center;
}
.animatronic img {
max-width: 200px;
width: 20vw;
}
.animatronic > span {
font-size: 20pt;
margin-bottom: 15px;
}
.range_buttons {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 25px;
font-size: 1.5rem;
font-family: "Consolas";
width: 100%;
}
.range_buttons button {
border-radius: 5px;
width: 50px;
outline: none;
background-color: var(--button-color);
color: inherit;
font-weight: bolder;
border: none;
font-size: inherit;
cursor: pointer;
transition: transform 200ms 50ms;
}
.range_buttons button:not(:disabled):hover,
.range_buttons button:not(:disabled):focus-within {
transform: scale(1.15);
transition: transform 200ms 50ms;
}
.range_buttons button:disabled {
cursor: default;
opacity: 0.8;
}
.start_screen {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
/* height: 100vh; */
display: flex;
align-self: center;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
}
.start_screen span {
flex: 100%;
margin-bottom: 15px;
font-size: 12.5pt;
}
.ready_button {
font-weight: 800;
padding: auto 10px;
font-size: 17pt;
}
.start_screen button:not(.ready_button) {
font-size: 15pt;
}
.start_screen button:not(.ready_button)[data-selected="false"] {
opacity: 0.6;
}
.start_screen button:not(.ready_button)[data-selected="true"]:before {
content: "▶ ";
}
.start_screen button {
border-radius: 6.5px;
/* width: 100px; */
cursor: pointer;
height: 100%;
outline: none;
color: white;
background-color: var(--button-color);
border: none;
}
.footer {
opacity: 0.8;
height: 50px;
text-align: center;
}
.footer p {
margin-top: 0;
}
@media screen and (min-width: 750px) {
.custom_night_container h1 {
margin-bottom: 30px;
}
.start_screen {
width: 50%;
}
.start_screen button {
margin-top: 10px;
height: 50px;
}
.range_buttons button {
height: 50px;
}
.footer {
margin-top: 50px;
}
}
@media screen and (max-width: 750px) {
.custom_night_container h1 {
/* margin-bottom: 2%; */
margin-top: 2%;
font-size: 15pt;
}
.start_screen {
width: 90%;
}
.ready_button {
margin: 1.2% auto 1% auto;
}
.start_screen button {
font-size: 10pt !important;
height: 35px;
}
.range_buttons {
margin-top: 15px;
max-height: 30px;
}
.footer {
margin: 1% 0px 1% 0px;
}
}