-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (43 loc) · 821 Bytes
/
style.css
File metadata and controls
51 lines (43 loc) · 821 Bytes
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
/* use vh, vw to let map load */
#map {
height: 80vh;
width: 70vw;
flex-grow: 10;
}
#toggle {
display: none;
}
@import url('https://fonts.googleapis.com/css?family=Nanum+Myeongjo|Patua+One');
body {
display: flex;
flex-direction: column;
background: linear-gradient(to right, #00d2ff, #928dab);
}
.header {
order: 1;
font-size: 125%;
text-align: center;
font-family: 'Patua One', cursive;
font-family: 'Nanum Myeongjo', sans-serif;
}
.app {
order: 2;
display: flex;
flex-direction: row;
background: #928dab;
}
.words {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.list li {
list-style-type: none;
margin-top: 5vh;
color: white;
}
@media screen and (max-width: 450px){
#toggle {
display: inline;
}
}