-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (92 loc) ยท 1.73 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Noto Sans KR", AppleSDGothicNeo,
"Apple SD Gothic Neo", AppleSDGothicNeo-Light,
HelveticaNeue-Light, "Malgun Gothic",
"๋ง์ ๊ณ ๋", sans-serif;
color: #212529;
height: 100%;
min-height: 100vh;
position: relative;
}
input,
button {
font-family: "Noto Sans KR", AppleSDGothicNeo,
"Apple SD Gothic Neo", AppleSDGothicNeo-Light,
HelveticaNeue-Light, "Malgun Gothic",
"๋ง์ ๊ณ ๋", sans-serif;
}
nav.navigation,
div.searchbar-container,
div.button-container {
display: flex;
align-items: center;
}
div.navigation-wrapper {
width: 100%;
display: flex;
justify-content: center;
border-bottom: 1px solid #ccc;
padding: 16px 0;
}
nav.navigation {
width: 60%;
justify-content: space-between;
}
div.left-side-container {
display: flex;
align-items: center;
}
img.logo {
width: 128px;
margin-right: 36px;
}
div.searchbar-container {
border: 1px solid #ccc;
padding: 10px 16px;
border-radius: 8px;
width: 400px;
justify-content: space-between;
}
div.searchbar-container input {
border: none;
width: 85%;
}
div.button-container button {
display: flex;
align-items: center;
justify-content: center;
padding: 12px 18px;
border-radius: 8px;
background: transparent;
border: 1px solid #ccc;
}
div.button-container button:first-child {
margin-right: 12px;
}
div.button-container button span {
font-weight: 900;
margin-left: 8px;
}
header {
width: 100%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
}
header h1 {
font-size: 2.15rem;
font-weight: 900;
}
div.content-wrapper {
width: 100%;
display: flex;
justify-content: center;
}
main.content {
width: 60%;
}