forked from GDG-on-Campus-SKHU/24-25-WEB-Assignment-03
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem3.css
77 lines (76 loc) · 1.45 KB
/
problem3.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
html,
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #585858;
flex-direction: column;
}
.login {
position: absolute; /* 절대 위치로 설정 */
top: 20px; /* 상단에서 20px 떨어지게 설정 */
right: 20px; /* 오른쪽에서 20px 떨어지게 설정 */
color: white;
display: flex;
width: auto; /* 자동 너비 */
}
.hr_login {
width: 100vw;
color: white;
position: absolute; /* 절대 위치로 설정 */
margin-top: -650px;
}
.box {
width: 400px;
height: 600px;
border: solid 1px #000000;
background-color: white;
display: none;
}
.inputbox {
width: 240px;
height: 30px;
border: none;
}
.inputalign {
justify-content: flex-start;
align-items: center;
text-align: center;
margin-top: 12px;
margin-left: 50px;
width: 300px;
height: 35px;
border: solid 1px #b2adad;
display: flex;
}
.buttonstyle1 {
margin-top: -10px;
margin-left: 50px;
height: 45px;
width: 180px;
background-color: rgb(48, 167, 48);
color: white;
font-size: 15px;
border-radius: 10px;
border: none;
}
.buttonstyle2 {
margin-top: -10px;
margin-left: 20px;
height: 45px;
width: 100px;
background-color: red;
color: white;
font-size: 15px;
border-radius: 10px;
border: none;
}
.warning {
color: red;
height: 100px;
margin-left: 50px;
max-height: 100px; /* 최대 높이 설정 */
overflow-y: auto; /* 세로 스크롤 활성화 */
}