-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.css
63 lines (58 loc) · 1.35 KB
/
signup.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
#card{
width: 30%;
margin: auto;
display: grid;
background-color: teal;
align-items: center;
align-content: center;
gap: 30px;
margin-top: 100px;
border-radius: 20px;
text-align: center;
}
#card>div:nth-child(4){
width: 30%;
margin: auto;
background-color: black;
color: tomato;
font-size: 20px;
font-weight: bold;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border-radius: 4px;
margin-bottom: 30px;
padding: 10px;
cursor: pointer;
}
#card>div:nth-child(5){
width: 70%;
margin: auto;
background-color: white;
color: tomato;
font-size: 14px;
font-weight: bold;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border-radius: 4px;
margin-bottom: 30px;
padding: 10px;}
#card>div:nth-child(5)>span{
color: teal;
font-size: 18px;
cursor: pointer;
}
#card>input{
padding: 20px;
width: 70%;
margin: auto;
outline: 0px;
border-radius: 8px;
border: 0px;
}
#card>input:nth-child(1){
margin-top: 50px;
}
#card>input:nth-child(3){
margin-bottom: 20px;
}
body{
background-color: black;
}