-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpact-map.css
115 lines (98 loc) · 1.95 KB
/
impact-map.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
.impact-map-container {
display: flex;
flex-direction: column;
height: calc(100vh - 60px); /* Adjust based on your main nav height */
background-color: #1a1a1a;
color: #ffffff;
}
.impact-map-header {
padding: 1rem 2rem;
background-color: rgba(26, 26, 26, 0.9);
}
.impact-map-content {
display: flex;
flex: 1;
position: relative;
}
.sidebar-left {
width: 250px;
padding: 2rem;
background-color: rgba(26, 26, 26, 0.9);
border-right: 1px solid #333333;
}
.map-container {
flex: 1;
background-color: #1a1a1a;
}
.sidebar-right {
width: 300px;
padding: 2rem;
background-color: rgba(26, 26, 26, 0.9);
border-left: 1px solid #333333;
}
.action-buttons {
display: flex;
flex-direction: column;
gap: 1rem;
}
.action-buttons button {
padding: 0.75rem 1.5rem;
border-radius: 8px;
border: none;
background-color: #2A9D8F;
color: white;
cursor: pointer;
transition: opacity 0.2s;
}
.action-buttons button:hover {
opacity: 0.9;
}
.filters {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.filter-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.filter-group select {
width: 100%;
padding: 0.5rem;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
border: 1px solid #333333;
}
.search-bar input {
width: 300px;
padding: 0.5rem 1rem;
border-radius: 20px;
border: 1px solid #333333;
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
}
.store-badges {
margin-top: 2rem;
display: flex;
align-items: center;
gap: 1rem;
}
.store-badges img {
height: 32px;
}
.mobile-preview {
margin-top: 2rem;
text-align: center;
}
.mobile-preview img {
max-width: 100%;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Custom marker style */
.custom-marker {
border: none;
background: none;
}