-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
237 lines (216 loc) · 4.33 KB
/
Copy pathstyle.css
File metadata and controls
237 lines (216 loc) · 4.33 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
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* --- style.css 전체 교체 --- */
:root {
--base-border: 1px solid #e1e1e1;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
Arial, sans-serif;
background: #f5f5f3;
min-height: 100vh;
margin: 0;
padding: 0;
display: flex;
box-sizing: border-box;
flex-direction: column; /* ← 세로 배치 */
align-items: center;
justify-content: center;
gap: 20px; /* ← 서버 시간과 로그인 카드 사이 간격 */
}
/* ★★★ 로그인 카드 (Flex 구조로 변경) ★★★ */
.login-card {
width: 1400px;
height: 600px;
border-radius: 18px;
box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
border: var(--base-border);
background: white; /* 배경색 명시 */
padding-bottom: 62px;
display: flex;
flex-direction: column;
margin-top: 75px;
}
/* 상단 띠 - 주황색이 더 짧음 */
.banner-bar {
height: 18px;
border-radius: 18px 18px 0 0;
width: 100%;
display: flex;
}
.banner-bar .orange {
background: #f8a022;
height: 100%;
width: 35%;
border-top-left-radius: 18px;
}
.banner-bar .blue {
background: #2d6a99;
height: 100%;
width: 65%;
border-top-right-radius: 18px;
}
/* ★★★ 서버 시간 구역 - 제거됨 ★★★ */
.server-time-section {
padding: 15px 0;
text-align: center;
background: white;
border-radius: 18px 18px 0 0;
position: absolute;
top: 50px;
}
#server-time {
font-size: 5rem;
color: #2ecc71;
font-weight: 600;
}
/* 로그인 콘텐츠 (로고 + 폼) */
.login-content {
display: grid;
grid-template-columns: 1fr 1.8fr;
padding: 80px 100px 0 80px;
align-items: center;
gap: 80px;
}
/* 학교 로고 - 오른쪽으로 이동 */
.uni-labels {
color: #21538d;
font-weight: 700;
font-size: 3.3rem;
line-height: 1.3;
letter-spacing: -3px;
white-space: pre-line;
transform: translateY(170px);
text-align: center;
}
/* 폼 박스 - 왼쪽으로 이동 */
.login-form-box {
display: flex;
flex-direction: column;
align-items: flex-start;
transform: translateX(20px);
}
.login-title {
color: #344055;
font-size: 4.05rem;
font-weight: 700;
margin-bottom: 58px;
line-height: 1.05;
margin-top: 65px;
}
.login-fields {
width: 100%;
display: flex;
flex-direction: column;
gap: 36px;
}
.input-row {
display: grid;
grid-template-columns: 126px 1fr 81px;
align-items: center;
width: 100%;
gap: 23px;
transform: translateX(-50px);
}
.input-row:not(:last-child) .login-btn {
display: none;
}
.input-row:last-child .login-btn {
display: flex;
}
.input-row label {
font-size: 1.86rem;
color: #646464;
font-weight: 600;
justify-self: start;
padding-right: 15px;
}
.input-row input[type='text'],
.input-row input[type='password'] {
max-width: 450px;
width: 100%;
min-width: 0;
flex: 1;
box-sizing: border-box;
padding: 26px 24px;
font-size: 1.86rem;
border: var(--base-border);
border-radius: 8px;
background: #f9fafc;
outline: none;
transform: translateX(-30px);
}
.login-btn {
width: 150px;
height: 220px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.77rem;
background: linear-gradient(180deg, #fbbf44, #e59c18);
border: none;
color: #fff;
border-radius: 14px;
font-weight: bold;
cursor: pointer;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
margin: 0;
padding: 0;
flex-direction: column;
vertical-align: middle;
margin-top: -120px;
transform: translateX(-50px);
}
.login-btn-sub {
font-size: 1rem;
line-height: 1;
opacity: 0.95;
}
.caps-tip {
margin-top: 34px;
font-size: 1.63rem;
color: #888;
margin-left: 7px;
letter-spacing: -1.5px;
}
/* Caps Lock 키를 확인 부분만 빨간색 */
.caps-tip b {
color: #e74c3c;
font-weight: 700;
}
.tech-orange {
color: #fbbf44; /* 로그인 버튼과 같은 주황색 */
}
/* 반응형 */
@media (max-width: 960px) {
.login-card {
width: 98vw;
padding-bottom: 10vw;
}
.login-content {
grid-template-columns: 1fr 1fr;
padding: 26px 6vw 0 6vw;
gap: 10vw;
}
.uni-labels {
transform: none;
}
.login-form-box {
transform: none;
}
}
@media (max-width: 640px) {
.login-card {
width: 100vw;
border-radius: 0;
}
.login-content {
grid-template-columns: 1fr;
padding: 22px 7vw 0 7vw;
}
.uni-labels {
transform: none;
}
.login-form-box {
transform: none;
}
}