-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmask_home.css
127 lines (94 loc) · 2 KB
/
mask_home.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);
.nanumgothic * {
font-family: 'Nanum Gothic', sans-serif;
}
html, body {
margin: 0;
height: 100vh;
width: 100%;
}
.container{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.logo-wrapper{
/* 전체에서 자신의 크기 지분을 조정 */
flex: 2;
/* 내부 아이템들의 위치조정 */
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding: 30px;
}
.logo-wrapper > * {
margin: 0;
}
.main-title{
font-size: 5.5rem;
text-align: center;
color: rgb(122, 168, 255);
font-family: 'Nanum Gothic', sans-serif;
padding-bottom: 0.5rem;
}
.sub-title{
font-size: 2rem;
color: rgb(158, 158, 158);
font-family: 'Nanum Gothic', sans-serif;
}
/* main search bar */
.search-bar-positioner{
/* 위치설정 */
position: relative;
z-index: 3;
}
.search-bar-wrapper{
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
/* 사이즈 설정 */
height: 7vh;
width: 65vw;
max-height: 50px;
padding: 0 10px;
/* 위치 설정 */
margin: 0 auto;
/* 검색창 배경 스타일 */
border-radius: 40px;
box-shadow: 0 3px 6px 0 rgba(101, 219, 255, 0.548);
border-style: solid;
border-width: 1px;
border-color: rgb(177, 233, 255);
background-color: white;
}
#search-bar{
/* 테두리 없애기 */
border-style: none;
/* 크기 설정 */
width: 90%;
height: 80%;
/* 폰트 설정 */
font-size: 15px;
font-weight: bold;
font-family: 'Nanum Gothic', sans-serif;
}
#search-bar:focus{
/* 클릭시 테두리 없애기 */
outline: none;
}
.menu {
width: 100%;
flex: 3;
display: flex;
flex-direction: row;
justify-content: center;
}
.menu > div {
padding: 30px;
cursor: pointer;
}