-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (65 loc) · 1.13 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
/* CSS reset */
*,
*::before,
*::after {
box-sizing: border-box;
}
body,
h1,
h2,
h3,
p {
margin: 0;
font-family: 'Otomanopee One', sans-serif;
}
iframe {
width: 90%;
height: 75vh;
border-radius: 10px;
}
.lightBlack {
color: rgb(56, 56, 56);
}
/* This centers everything responsively */
header, section, footer {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
}
#map, #panorama {
margin-top: 2vh;
margin-bottom: 2vh;
height: 80vh;
width: 90%;
border-radius: 10px;
}
.hide {
display: none;
}
#goBack {
margin-top: 1vh;
margin-bottom: 1vh;
background-color: rgb(56, 56, 56);
color: white;
padding: 1vh 2vw 1vh 2vw;
border-radius: 4px;
border: none;
font-family: 'Otomanopee One', sans-serif;
}
#goBack:active {
margin-top: 1vh;
margin-bottom: 1vh;
background-color: rgb(41, 41, 41);
color: white;
padding: 1vh 2vw 1vh 2vw;
border-radius: 4px;
border: none;
}
a {
font-style: italic;
text-decoration: none;
margin-left: 1vw;
margin-right: 1vw;
}