-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
203 lines (182 loc) · 3.55 KB
/
style.css
File metadata and controls
203 lines (182 loc) · 3.55 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
199
200
201
202
203
/* RESET + BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100vw;
height: 100vh;
overflow: hidden; /* no scrollbar */
font-family: "Inter", sans-serif;
color: #f5f5f5;
background: radial-gradient(circle at top, #b71c1c 0, #4a0000 40%, #000 100%);
}
/* TOP BAR */
.top-bar {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 52px;
background: rgba(10, 10, 10, 0.92);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 18px;
z-index: 2000;
}
.top-left {
display: flex;
align-items: center;
gap: 10px;
}
.logo-dot {
width: 28px;
height: 28px;
border-radius: 13px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 12px rgba(255, 204, 128, 0.6);
}
.title-block h1 {
font-size: 18px;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.title-block span {
font-size: 11px;
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 0.14em;
}
.top-right {
display: flex;
gap: 8px;
}
.pill {
padding: 6px 10px;
border-radius: 999px;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.12em;
border: 1px solid rgba(255,255,255,0.18);
background: rgba(255,255,255,0.04);
}
.pill.primary {
background: linear-gradient(135deg,#f44336,#ff9800);
color: #2b0000;
font-weight: 600;
box-shadow: 0 0 14px rgba(244,67,54,0.5);
}
/* FOOTER */
.footer-bar {
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
color: #ddd;
opacity: 0.85;
pointer-events: none;
}
/* MAP CONTAINER */
#map-container {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 60px 24px 38px 24px; /* room for header/footer */
}
#map-container > img[usemap] {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
border-radius: 14px;
box-shadow:
0 22px 60px rgba(0,0,0,0.7),
0 0 0 1px rgba(255,255,255,0.1);
background: #111;
}
/* HINT */
.hint {
position: fixed;
right: 16px;
bottom: 40px;
padding: 8px 12px;
font-size: 11px;
background: rgba(0,0,0,0.7);
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.15);
display: flex;
align-items: center;
gap: 6px;
z-index: 1500;
}
.hint-dot {
width: 8px;
height: 8px;
background: #ffcc80;
border-radius: 50%;
box-shadow: 0 0 8px rgba(255,204,128,0.9);
}
/* MODALS */
.modal {
position: fixed;
display: none;
z-index: 3000;
max-width: 320px;
background: rgba(15,15,20,0.96);
color: #f5f5f5;
border-radius: 14px;
padding: 14px;
box-shadow: 0 18px 50px rgba(0,0,0,0.8);
border: 1px solid rgba(255,255,255,0.06);
}
.modal img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 10px;
margin-bottom: 8px;
}
.modal h3 {
font-size: 16px;
margin-bottom: 4px;
color: #ffcc80;
}
.modal p {
font-size: 13px;
line-height: 1.4;
color: #e0e0e0;
}
.close-btn {
position: absolute;
top: 8px;
right: 10px;
font-size: 18px;
border: none;
background: transparent;
color: #999;
cursor: pointer;
}
.close-btn:hover {
color: #fff;
transform: scale(1.1);
}
/* MOBILE */
@media (max-width: 768px) {
.top-bar { height: 48px; padding: 0 12px; }
.title-block h1 { font-size: 16px; }
#map-container { padding: 54px 8px 34px 8px; }
.modal { max-width: 88vw; }
}