-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
91 lines (87 loc) · 1.59 KB
/
styles.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
html,
body {
font-family: Courier New, Courier, monospace;
width: 100%;
height: 100%;
margin: 0;
}
h3 {
align-items: center;
display: flex;
font-size: 25px;
height: 50px;
justify-content: center;
margin: 0;
padding: 10px;
text-align: center;
}
#map {
height: calc(100% - 70px);
width: 100%;
}
.main-info {
font-family: Courier New, Courier, monospace;
font-size: 20px;
font-weight: bold;
}
.secondary-info {
font-family: Courier New, Courier, monospace;
font-size: 12px;
margin-top: 12px;
}
.secondary-info .title {
border-bottom: 1px solid #000;
display: block;
margin-bottom: 3px;
text-align: center;
}
.secondary-info p {
margin: 0;
}
.open-alert {
width: 25px;
height: 25px;
border-radius: 50%;
border: 2px solid #000;
display: inline-block;
background-color: #ddd;
cursor: pointer;
line-height: 27px;
}
#alert {
align-items: center;
justify-content: center;
display: flex;
position: fixed;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
transition: opacity 0.5s ease-out;
visibility: hidden;
z-index: 10;
}
#alert .content {
background-color: #fff;
max-width: 80%;
padding: 20px;
position: relative;
}
#alert .close-alert {
position: absolute;
top: 10px;
right: 10px;
}
#alert-background {
background-color: #000;
position: fixed;
top: 0;
left: 0;
width: 100%;
opacity: 0;
height: 100%;
visibility: hidden;
transition: opacity 0.5s ease-out;
z-index: 1;
}