-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12-3_styles.css
More file actions
85 lines (70 loc) · 1.13 KB
/
12-3_styles.css
File metadata and controls
85 lines (70 loc) · 1.13 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
body {
margin: 0;
min-width: 768px;
font-family: 'Noto Sans KR', sans-serif;
}
/* side navbar */
#side-navbar {
background-color: black;
height: 100%;
width: 250px;
position: fixed;
color: white;
}
#side-navbar #logo {
width: 150px;
display: block;
margin: 30px auto 50px auto;
}
#side-navbar ol {
list-style: none;
padding-left: 22px;
}
#side-navbar li{
margin-bottom: 30px;
}
#side-navbar li:last-child {
margin-bottom: 60px;
}
#sns {
margin-top: 25px;
text-align: center;
}
#facebook {
width: 20px;
margin-right: 13px;
}
#twitter {
width: 20px;
}
/* main */
#main {
margin-left: 250px;
}
#main .hero-header {
text-align: center;
background-image: url("pic/hero_header.jpg");
background-size: cover;
background-position: center center;
height: 750px;
line-height: 750px;
}
#main .info {
display: inline-block;
line-height: normal;
height: 100%;
vertical-align: middle;
}
#main h1 {
margin: 0;
margin-bottom: 40px;
color: white;
font-size: 38px;
}
#main a {
padding: 10px 40px;
border: 2px solid white;
font-size: 18px;
color: white;
text-decoration: none;
}