-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12-5_styles.css
More file actions
90 lines (74 loc) · 1.31 KB
/
12-5_styles.css
File metadata and controls
90 lines (74 loc) · 1.31 KB
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
84
85
86
87
88
body {
margin: 0;
}
#navbar {
padding: 0 20px;
border-bottom: 1px solid #eee;
overflow: hidden;
background-color: white;
box-shadow: 0 1px 3px 0 rgba(0,0,0,0.50);
height: 60px;
line-height: 60px;
}
#logo {
vertical-align: middle;
float: left;
}
#list {
float: right;
padding: 0px;
margin: 0px;
}
li {
float: left;
list-style: none;
}
#list li a {
display: block;
text-decoration: none;
color: black;
padding-left: 10px;
padding-right: 10px;
font-family: 'Noto Sans KR', sans-serif;
list-style: none;
font-size: 16px;
}
#list li a:hover{
background-color: #eeeeee;
}
.hero-header {
background-image: url("pic/hero_image.jpg");
background-size: cover;
background-position: center center;
height: 670px;
text-align: center;
font-family: 'Noto Sans KR', sans-serif;
display: flex;
align-items: center;
}
.hero-header .info {
margin-left: auto;
margin-right: auto;
}
.hero-header .info h1 {
font-size: 36px;
margin: 0;
margin-bottom: 13px;
color: white;
font-weight: 400;
}
.hero-header .info h2 {
font-size: 16px;
margin: 0;
margin-bottom: 60px;
color: white;
font-weight: 400;
}
.hero-header .info a {
font-size: 14px;
background-color: white;
color: #464273;
padding: 10px 40px;
text-decoration: none;
border-radius: 5px;
}