-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (106 loc) · 1.77 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (106 loc) · 1.77 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
.icon {
max-width: 70%;
max-height: 70%;
margin: 4px;
}
.tourpopup h1 {
font-size: 18px;
}
.tourpopup {
display: flex;
flex-direction: column;
align-content: center;
justify-content: space-evenly;
align-items: center;
margin: 10px;
}
.menu {
margin: 5px;
position: fixed;
top: 5px;
right: 5px;
background-color: white;
padding: 8px;
border-radius: 12px;
border: 1px solid black;
}
.menu ul {
margin: 5px;
font-size: 18px;
}
#map {
width: 100vw;
height: 100vh;
z-index: 0;
}
.menu #hamburgerCheck {
opacity: 0;
width: 0;
height: 0;
}
.menu li {
display: block;
}
.menu ul {
margin-top: 20px;
}
.menu input ~ ul {
visibility: hidden;
display: none;
}
.menu input:checked ~ ul {
visibility: visible;
display: grid;
justify-content: start;
justify-items: start;
grid-row-gap: 6px;
padding: 10px 20px;
margin: 0px;
}
.hamburger_menu {
float: right;
cursor: pointer;
}
.recordingButton {
display: inline;
position: absolute;
bottom: 10px;
left: 10px;
height: 1.3em;
width: 1.3em;
background-color: gray;
border-radius: 50%;
vertical-align: middle;
appearance: none;
-webkit-appearance: none;
outline: none;
cursor: pointer;
}
.recordingButton:checked {
background-color: #f10000;
animation-name: pulse;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes pulse {
0% {
box-shadow: 0px 0px 5px 0px rgba(173, 0, 0, 0.8);
}
65% {
box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0.5);
}
90% {
box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0);
}
}
.newVersion {
padding: 20px;
border-top: 1px solid black;
position: fixed;
bottom: 0px;
width: 100%;
height: 80px;
vertical-align: center;
background: white;
}