-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (73 loc) · 1.23 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
body,
html {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
background-color: #2b2b2b;
}
* {
/*border: 1px solid black;*/
box-sizing: border-box;
color: rgba(255, 255, 255, 0.9);
}
#container {
width: 90%;
max-width: 1600px;
margin: 0 auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#container h1 {
width: 100%;
margin: 30px 0;
}
#map {
/*background: url(https://api.fnkr.net/testimg/1280x750/00CED1/FFF/?text=map) no-repeat center;*/
width: calc(75% - 40px);
height: 80vh;
border-radius: 5px;
overflow: hidden;
z-index: 0;
box-shadow: -5px 5px 16px 1px rgba(0, 0, 0, 0.57);
}
#list {
width: 25%;
height: 80vh;
padding: 0 20px;
margin-left: 20px;
}
#list h2 {
margin-top: 0;
padding-left: 0;
margin-bottom: 8px;
}
#list ol {
height: calc(100% - 60px);
overflow: scroll;
margin: 0;
padding: 0;
position: relative;
}
#list li {
list-style: none;
position: absolute;
/*border: 1px solid white;*/
border-radius: 5px;
background: rgba(255, 255, 255, 0.5);
padding: 8px 12px;
transition: 0.75s;
/*margin: 12px 0;*/
}
@media only screen and (max-width: 960px) {
#list {
width: 100%;
}
#list h2 {
margin-top: 50px;
}
#map {
width: 100%;
}
}