-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (89 loc) · 1.49 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 20px;
}
body {
overflow: hidden;
}
html{
background-color: #282A36;
color: #F8F8F2;
}
#map {
position: relative;
height: 93vh;
width: 100%;
}
footer {
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.toggle {
position: absolute;
right: 10px;
top: 10px;
z-index: 9999;
background-color: #6272A4;
padding: 15px 15px;
cursor: pointer;
border-radius: 10px;
}
.layer {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
background-color: #0000007a;
display: none;
}
.layer.layer-active {
display: block;
}
.modal {
position: absolute;
height: 93vh;
width: 60%;
z-index: 99999;
top: 0;
right: -10000px;
background-color: #6272A4;
transition: all 0.6s;
padding: 20px;
overflow-y:scroll;
}
.modal.modal-active {
right: 0;
}
.content > label {
font-size: 16px;
}
.modal > a {
color: #F8F8F2;
}
.modal > a:nth-last-child(1) {
margin-left: 10px;
}
.close_modal {
display: none;
}
@media (max-width: 739px) {
.modal {
width: 100%;
}
.close_modal {
transform: translateX(-8px);
transform: translateY(-6px);
display: inline-block;
margin-bottom: 20px;
padding: 10px 15px;
background-color: white;
color: black;
border-radius: 50px;
}
}