forked from GDG-on-Campus-SKHU/24-25-WEB-Assignment-03
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblem2.css
63 lines (62 loc) · 1.02 KB
/
problem2.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
body {
background-color: #585858;
display: flex;
justify-content: center;
align-items: center;
height: 50vh;
margin: 0;
}
.box1 {
width: 400px;
height: 500px;
border: solid 1px #000000;
background-color: #585858;
border: solid 1px white;
margin-top: 300px;
}
.box2 {
margin-top: 10px;
margin-left: 20px;
}
.information {
margin-top: 10px;
margin-left: 20px;
}
.box3 {
padding: 5px;
border: solid 1px white;
width: 350px;
height: 50px;
border-radius: 10px;
font-size: 12px;
color: white;
}
.box4 {
padding: 5px;
border: solid 1px white;
width: 350px;
height: 30px;
border-radius: 10px;
font-size: 12px;
color: white;
}
.information2 {
margin-top: 40px;
margin-left: 40px;
}
.loginstyle3 {
justify-content: flex-start;
align-items: center;
text-align: center;
margin-top: 60px;
}
#button {
width: 350px;
height: 30px;
background-color: 03c75a;
border: none;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer; /* 마우스 커서 변경 */
}