-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignupStyle.css
104 lines (90 loc) · 1.62 KB
/
signupStyle.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
*{
margin: 0;
padding: 0;
}
html, body{
background-color: #131313;
font-family: Arial, Helvetica, sans-serif;
}
h1{
font-size: 60px;
color: white;
text-align: center;
margin-top: 5%;
font-family: Impact, Charcoal, sans-serif;
}
.signup-form{
border-radius: 20px;
border: 1px solid black;
height: 700px;
width: 500px;
margin: 0 auto;
margin-top: 20px;
color: white;
}
.signup-form h2{
margin: 0 0 30px;
padding: 50px 0;
color: #fff;
text-align: center;
}
.signup-form .user-box{
position: relative;
text-align: center;
}
.signup-form .user-box input{
width: 80%;
padding: 10px 0;
font-size: 16px;
border: none;
border-bottom: 1px solid white;
margin-bottom: 30px;
color: #fff;
outline: none;
background: transparent;
}
.signup-form .user-box label{
margin-left: 50px;
position: absolute;
top: 0;
left: 0;
padding: 10px 0;
font-size: 16px;
color: white;
pointer-events: none;
transition: .9s;
}
.signup-form .user-box input:focus ~ label,
.signup-form .user-box input:valid ~ label{
top: -20px;
left: 0;
color: #03e9f4;
font-size: 12px;
}
button{
background-color: greenyellow;
color: black;
border-radius: 20px;
padding: 10px 30px;
margin-left: 50px;
border: none;
outline: none;
}
button:hover{
padding: 15px 35px;
transition: .5s;
font-size: 13px;
cursor: pointer;
}
p{
margin-left: 50px;
margin-top: 10px;
font-size: 13px;
}
p a:hover{
color: violet;
}
p a{
padding-left: 6px;
color: rgb(80, 0, 80);
}