-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (68 loc) · 1.46 KB
/
style.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
body {
background-image: linear-gradient(to right,#5e9de1,#4b81cc);
margin-top: 150px !important;
}
.register-left{
text-align: center;
color: #fff;
padding: 30px;
}
.register-left img{
margin-top: 60px;
margin-bottom: 18px;
width: 80px;
animation: mover 1s infinite alternate;
}
.register-left p
{
padding: 20px 20px 0;
}
.register-left .btn-primary
{
border-radius: 1.5rem;
border: none;
width: 120px;
background: #f8f8f8;
font-weight: 600;
color: #555;
margin-top: 20px;
padding: 10px;
}
.register-left .btn-primary:hover{
background: #000;
}
.register-right{
border: none;
background: #f8f8f8;
border-top-left-radius: 10% 50%;
border-bottom-left-radius: 10% 50%;
padding: 50px;
}
.register-right h2{
text-align: center;
margin-bottom: 10px;
color: #555;
}
.register-form{
padding: 10px;
}
.register-right .btn-primary
{
float: right;
border-radius: 1.5rem;
border: none;
width: 120px;
background: #8400ff;
font-weight: 600;
color: #fff;
margin-top: 20px;
padding: 10px;
}
.register-right .btn-primary:hover{
background: #3510dc;
}
@keyframes mover
{
0%{transform: translateY(0);}
100%{transform: translateY(-20px);}
}