-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignUp.css
80 lines (71 loc) · 1.34 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body{
background-color: #565656;
}
#container{
width: 60%;
margin: auto;
display: grid;
grid-template-columns: repeat(2,1fr);
grid-template-rows: 1fr;
margin-top: 100px;
gap: 50px;
border-radius: 10px;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
input{
display: block;
width: 90%;
height: 30px;
font-size: 20px;
border: 0;
outline: 0;
}
h1{
font-family: Clear Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
}
hr{
margin-top: -3px;
}
#container>div:nth-child(2){
padding: 30px;
}
#d2{
margin-top: 70px;
}
#d1{
margin-top: 50px;
}
button{
display: block;
width: 100%;
height: 40px;
margin-top: 30px;
background-color: rgb(255, 111, 97);
color: white;
font-weight: 700;
font-size: 16px;
border: 1px solid rgb(255, 111, 97);
border-radius: 5px;
font-family: Clear Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
cursor: pointer;
}
#p1{
color: #616161;
font-weight: 400;
font-family: Clear Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
}
#p2{
color: #616161;
font-weight: 400;
font-size: 18px;
font-family: Clear Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
}
a{
color: rgb(255, 111, 97);
}
img{
width: 100%;
height: 100%;
border-radius: 10px;
}