-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (61 loc) · 1.08 KB
/
index.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
:root {
--main_dark: 0,0,0;
--main_white: 255,255,255;
--main_color: 138, 43, 226;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
min-width: 0;
min-height: 0;
}
html,
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
line-height: 24px;
}
.map {
width: 100%;
height: 400px;
}
.wrapper {
padding: 50px;
display: grid;
grid-template-columns: 30% 1fr;
grid-gap: 30px;
}
.map__adress ul {
list-style: none;
padding: 0;
margin: 0;
}
.map__adress ul li {
padding: 30px;
border: 1px solid #e5e5e5;
margin-bottom: 5px;
cursor: pointer;
transition: all 0.3s;
}
.map__adress ul li:hover,
.map__adress ul li.active {
border-color: red;
}
.map__adress ul li:last-child {
margin-bottom: 0;
}
.reset {
margin-top: 15px;
background: rgb(var(--main_white));
color: rgb(var(--main_dark));
border: 1px solid rgba(var(--main_dark), 0.3);
padding: 10px 15px;
cursor: pointer;
transition: all 0.3s;
}
.reset:hover {
background: rgb(var(--main_color));
border-color: rgb(var(--main_color));
color: rgb(var(--main_white));
}