-
Notifications
You must be signed in to change notification settings - Fork 1
/
global.css
61 lines (54 loc) · 981 Bytes
/
global.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
body {
background: #FCFCFC;
margin: 0 auto;
}
.root {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
li {
list-style-type: none;
list-style: none;
padding-right: 40px;
}
a {
text-decoration: none;
color: #000000;
}
/* nav바 */
.navbar {
display: flex;
flex-direction: row;
width: 100vw;
height: 67px;
background-color: #F0E3F8;
align-items: center;
justify-content: space-around;
font-family: 'GangwonEduAll';
font-size: 20px;
color: #000000;
}
.navbar__menu {
display: flex;
flex-direction: row;
color: #000000;
}
/* footer */
footer {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
height: 100px;
left: 0px;
bottom: 0px;
width: 100%;
font-size: 10px;
font-family: 'Inter';
background-color: #F0E3F8;
margin-top: 30px;
color: #404040;
}