-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
46 lines (41 loc) · 849 Bytes
/
style2.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
.register-left img{
margin-top: -60%;
margin-left: 35%;
-webkit-animation: mover 2s infinite alternate;
animation: mover 1s infinite alternate;
}
.register-left{
text-align: center;
color: #fff;
margin-top: 4%;
}
.register-left input{
border: none;
border-radius: 1.5rem;
padding: 2%;
width: 60%;
background: #f8f9fa;
font-weight: bold;
color: #383d41;
margin-top: 30%;
margin-bottom: 3%;
cursor: pointer;
}
.register-left p{
font-weight: lighter;
padding: 12%;
margin-top: -9%;
}
@-webkit-keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
@keyframes mover {
0% { transform: translateY(0); }
100% { transform: translateY(-20px); }
}
.care {
margin-top: -25%;
margin-left: 60%;
color: white;
}