-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (82 loc) · 1.44 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
.header {
height: 80px;
background-color: rgba(255, 160, 122, 0.1);
backdrop-filter: blur(100px);
/* padding: 0 30px; */
box-sizing: border-box;
border-bottom: 1px solid rgba(255, 160, 122, 0.3);
width: 100%;
/* display: flex;
justify-content: space-between;
align-items: center; */
}
.nav {
height: 20px;
background: rgba(255, 160, 122, 0.3);
}
.blog {
width: 60%;
margin: 30px auto;
text-align: justify;
}
.blog > h1,
.blog > p {
display: block;
text-align: center;
}
.blog > i {
margin-bottom: 30px;
}
.sub_wrapper {
margin: 40px 0;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.footer {
height: 60px;
background-color: lightsalmon;
z-index: 1;
}
#go_to_top {
/* background-color: yellow; */
display: inline;
position: fixed;
top: 92vh;
left: 95vw;
z-index: 0;
}
#go_to_top > a > img {
height: 50px;
}
#reset_zoom {
background: black;
color: white;
border-radius: 0.4rem;
/* font-weight: 600; */
text-transform: uppercase;
padding: 3px 10px;
border: 1px solid darkslategray;
font-size: 12px;
}
.map_btns {
display: flex;
justify-content: space-between;
width: 600px;
}
.annotate {
position: absolute;
background-color: white;
border-radius: 0.3rem;
border: 1px solid lightgrey;
height: 100px;
width: 100px;
}
.img_container {
text-align: center;
font-size: small;
width: 400px;
margin: 0 auto;
padding: 15px;
}