-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (60 loc) · 1.05 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
html,
body,
#view-div {
padding: 0;
margin: 0;
max-height: 270px;
height: 45vh;
width: 100%;
}
#arrow-selector {
overflow: auto;
height: fit-content;
width: 100%;
font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#north-arrow {
height: 100px;
width: 100px;
padding: 6px;
}
#north-arrow>img {
height: 100%;
}
.text-center {
text-align: center;
}
.text-block {
text-align: left;
width: calc(100%-30px);
max-width: 800px;
margin-left: 15px;
margin-right: 15px;
}
#arrows {
display: flex;
overflow-x: scroll;
overflow-y: visible;
width: fit-content;
max-width: 100%;
}
.arrow {
width: fit-content;
padding: 5px 10px 5px 10px;
}
.arrow>img {
width: 80px;
height: 80px;
cursor: pointer;
}
.section-header-line {
width: 80px;
height: 4px;
margin: 30px auto 30px;
background-color: black;
border-radius: 2px;
}