RegisterPage.scss
1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: rgb(245, 235, 223);
}
#body {
display: flex;
justify-content: center;
align-items: center;
border-top: 2px solid;
border-bottom: 2px solid;
.register-box {
border: 2px solid;
width: 35%;
height: 60%;
margin-top: 30px;
margin-bottom: 30px;
h2 {
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
}
.input-area {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 5px;
input {
padding: 10px 0.1rem;
background-color: rgb(255, 255, 255);
}
}
.check-variable {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 5px;
}
.btn-area {
display: flex;
justify-content: center;
margin-top: 30px;
margin-bottom: 35px;
button {
width: 120px;
height: 40px;
font-size: large;
font-weight: bold;
background-color:rgb(255, 253, 238);
cursor: pointer;
}
}
}