-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
88 lines (75 loc) · 1.45 KB
/
custom.css
File metadata and controls
88 lines (75 loc) · 1.45 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
/* Fix footer positioning */
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.main-container {
flex: 1 0 auto;
}
.footer-container {
flex-shrink: 0;
margin-top: auto;
}
/* Map section styles */
.map-section {
width: 100%;
max-width: 1200px;
margin: 3rem auto;
padding: 0 2rem;
}
.map-section h3 {
color: #fff;
font-size: 1.5rem;
margin-bottom: 1.5rem;
text-align: center;
}
.map-container {
width: 100%;
height: 450px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.map-container iframe {
width: 100%;
height: 100%;
border: 0;
}
/* Shader card loading state */
.shader-container {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
position: relative;
}
.shader-container::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border: 3px solid rgba(96, 165, 250, 0.3);
border-top-color: #60a5fa;
border-radius: 50%;
animation: spin 1s linear infinite;
}
.shader-container canvas {
position: relative;
z-index: 1;
}
@keyframes spin {
to { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (max-width: 768px) {
.map-container {
height: 350px;
}
.map-section {
padding: 0 1rem;
margin: 2rem auto;
}
}