-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleSignup.css
62 lines (59 loc) · 956 Bytes
/
styleSignup.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
body{
background-color:#202a3f;
}
.SignUp{
color:#fff;
width:450px;
height:600px;
top:50%;
left:50%;
position:absolute;
background:#2f3640;
transform:translate(-50%,-50%);
box-sizing:border-box;
padding:70px 30px;
}
.SignUp input{
width:100%;
margin-top:4px;
}
.SignUp i{
/* avatarul */
color:#e84118;
font-size:80px;
border-radius:50%;
position:absolute;
top:5px;
left:42%;
}
.SignUp p{
margin:0;
margin-top:40px;
padding:0;
font-weight:bold;
}
.SignUp input[type="email"], input[type="password"],input[type="text"]
{
border:none;
border-bottom:1px solid #e84118;
background:transparent;
outline:none;
height:20px;
color:#fff;
font-size:16px;
}
.SignUp input[type="submit"] {
border:none;
outline:none;
height:40px;
background:#e84118;
color:#fff;
border-radius:50px;
font-size:18px;
transition:0.3s;
}
.SignUp input[type="submit"]:hover{
height:50px;
color:#fff;
text-shadow:0 0 20px #fff;
}