-
Notifications
You must be signed in to change notification settings - Fork 2
/
reg_style.css
59 lines (52 loc) · 1.01 KB
/
reg_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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #9633FF;
}
.form {
width: 400px;
border-radius: 5px;
background-color: white;
/* height:fit-content; */
padding: 5px 10px;
}
label {
display: block;
font-weight: bolder;
margin: 5px 0px;
}
input {
width: 100%;
padding: 8px 5px;
border-radius: 5px;
margin-bottom: 10px;
}
#submit-btn {
border: none;
background-color: blueviolet;
width: 100%;
padding: 10px 8px;
color: white;
font-weight: bolder;
text-transform: uppercase;
cursor: pointer;
margin: 9px 0px;
}
p {
font-size: 12px;
border-radius: 10px;
cursor: pointer;
display: inline-block;
}
a {
text-decoration: none;
font-weight: bolder;
}