-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
214 lines (193 loc) · 4.42 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* COMMON */
.flex-space {
flex-grow: 1;
}
/* HEADER */
header {
display: flex;
align-items: center;
/* 수직축 가운데 정렬 */
text-decoration: none;
font-size: 14px;
font-family: 'AppleSDGothicNeo', 'Noto Sans KR', sans-serif;
padding: 5px;
height: 60px;
/* margin: 0 5px 0 5px; */
}
.info, .actions {
display: flex;
/* align-items: center; */
}
a {
text-decoration: inherit;
color: black;
display: inline-flex;
align-items: center;
margin-right: 40px; /* 간격 조절 */
}
a:hover {
text-decoration: underline;
color: black;
}
a:last-child {
margin-right: 0; /* 마지막 아이템의 간격 제거 */
}
header .info {
padding: 5px;
margin: 0 5px 0 5px;
}
header .actions {
padding: 15px;
margin: 0 5px 0 5px;
}
.account-wrapper {
position: relative;
display: inline-block;
}
.account-image {
width: 40px;
height: 40px;
}
.svg-wrapper {
position: absolute;
top: 0;
left: 0;
}
main {
display: flex;
flex-direction: column;
align-items: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main .main_image {
margin-top: -330px;
}
.google-logo {
width: 272px;
height: 92px;
}
/* SEARCH */
.search {
display: flex;
align-items: center;
background-color: white;
border: 1px solid #dfe1e5;
border-radius: 24px;
padding: 0 16px;
margin-top: 25px;
width: 200%; /* 너비를 두 배로 늘림 */
max-width: 690px; /* 최대 너비 제한 */
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); /* 초기 그림자 효과 없음 */
transition: box-shadow 0.2s ease-in-out; /* 그림자 효과 전환 */
height: 42px;
position: relative;
}
.search:hover {
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28); /* 마우스 오버 시 그림자 효과 추가 */
}
.search-icon {
font-size: 20px;
color: #9aa0a6; /* 돋보기 이미지 색상 변경 */
}
.search-input {
border: none;
outline: none;
font-size: 16px;
width: 100%;
padding: 12px 0;
margin-left: 10px;
padding-left: 40px; /* search 아이콘의 공간 확보 */
padding-right: 120px; /* 다른 아이콘들의 공간 확보 */
}
.search-input::placeholder {
color: transparent;
}
.search-input:focus::placeholder {
color: #5f6368;
}
.search-btn {
display: none;
}
.material-symbols-outlined {
position: absolute;
font-family: "Material Symbols Outlined";
font-size: 24px;
opacity: 0.54; /* 아이콘 색을 흐리게 변경 */
}
.search .material-symbols-outlined:nth-child(1) {
left: 10px;
top: 50%;
transform: translateY(-50%); /* 아이콘을 수직 가운데 정렬 */
}
.search .material-symbols-outlined:nth-child(3) {
right: 80px;
top: 50%;
transform: translateY(-50%);
}
.search .material-symbols-outlined:nth-child(4) {
right: 45px;
top: 50%;
transform: translateY(-50%);
}
.search .material-symbols-outlined:nth-child(5) {
right: 10px;
top: 50%;
transform: translateY(-50%);
}
.buttons {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
button {
background-color: #f5f5f5;
border: none;
border-radius: 4px;
color: #5f6368;
cursor: pointer;
font-family: 'AppleSDGothicNeo', 'Noto Sans KR', sans-serif;
font-size: 14px;
padding: 8px 16px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.2s ease-in-out; /* 그림자 효과 전환 */
}
button:hover {
background-color: #f5f5f5; /* 마우스 오버 시 배경색 변경 */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 마우스 오버 시 그림자 효과 추가 */
}
/* FOOTER */
footer {
background-color: #f5f5f5; /* 연한 회색 배경색 */
padding: 10px 25px; /* 좌우 여백을 15px로 변경 */
position: absolute;
bottom: 0;
width: 100%;
box-sizing: border-box; /* 박스 크기 계산 방식 변경 */
display: flex; /* 추가: 풋터 레이아웃을 flex로 변경 */
flex-direction: column;
/* align-items: center; */
}
footer a {
color: #5f6368;
}
.first-row, .second-row {
display: flex;
justify-content: space-between; /* 왼쪽과 오른쪽에 각각 배치 */
font-size: 14px;
padding: 5px;
color: #5f6368; /* 글자색 변경 */
align-items: center; /* 수직축 가운데 정렬 */
width: 100%; /* 추가: 너비를 100%로 설정 */
}
.first-row {
border-bottom: 1px solid #e0e0e0; /* 연한 회색 실선 추가 */
}
.left_bar, .right_bar {
display: flex;
align-items: center; /* 수직축 가운데 정렬 */
flex-wrap: nowrap; /* 줄 바꿈 방지 */
}