-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.css
More file actions
131 lines (113 loc) · 2.04 KB
/
map.css
File metadata and controls
131 lines (113 loc) · 2.04 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
/* Стили для страницы карты */
.map-container {
display: flex;
gap: 30px;
min-height: 70vh;
}
.map-sidebar {
flex: 0 0 350px;
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.map-sidebar h2 {
font-family: 'Montserrat', sans-serif;
margin-bottom: 10px;
color: #1a1a2e;
}
.map-sidebar>p {
color: #666;
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid #eee;
}
.venue-filter {
margin-bottom: 30px;
}
.venue-filter h3 {
font-family: 'Montserrat', sans-serif;
margin-bottom: 15px;
font-size: 1.1rem;
color: #1a1a2e;
}
.genre-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.genre-tag {
background: #f0f0f0;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s;
}
.genre-tag:hover,
.genre-tag.active {
background: #ff7363;
color: white;
}
.venues-list {
display: flex;
flex-direction: column;
gap: 20px;
}
.venue-item {
background: #f8f9fa;
border-radius: 10px;
padding: 20px;
cursor: pointer;
transition: all 0.3s;
border-left: 4px solid transparent;
}
.venue-item:hover {
background: white;
border-left-color: #6c63ff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.venue-info h4 {
font-family: 'Montserrat', sans-serif;
margin-bottom: 8px;
color: #1a1a2e;
}
.venue-info p {
font-size: 0.9rem;
color: #666;
margin-bottom: 5px;
display: flex;
align-items: center;
gap: 8px;
}
.venue-info i {
color: #6c63ff;
width: 16px;
}
.venue-link {
display: inline-block;
margin-top: 10px;
color: #6c63ff;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
}
.venue-link:hover {
text-decoration: underline;
}
.map-wrapper {
flex: 1;
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
position: relative;
}
.map-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 40px;
}