-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (108 loc) · 1.98 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Ubuntu';
}
body{
background: #43a047;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container{
width: 360px;
height: 400px;
margin: 8% auto;
background: #fff;
border-radius: 8px;
position: relative;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
h3{
text-align: center;
margin-bottom: 40px;
color: #777;
}
.container form{
width: 280px;
position: absolute;
top: 100px;
left: 40px;
transition: 0.5s;
}
form input{
width: 100%;
padding: 10px 5px;
margin: 5px 0;
border: 0;
border-bottom: 1px solid #999;
outline: none;
background: transparent;
}
::placeholder{
color: #777;
}
.btn-box{
width: 100%;
margin: 30px auto;
text-align: center;
}
form button{
width: 110px;
height: 35px;
margin: 0 10px;
background: linear-gradient(to right, #1565c0, #1976d2);
border-radius: 30px;
border: 0;
outline: none;
color: #fff;
cursor: pointer;
font-weight: 700;
font-size: 0.8em;
}
#form2{
left: 450px;
}
#form3{
left: 450px;
}
.step-row{
width: 360px;
height: 40px;
margin: 0 auto;
display: flex;
align-items: center;
box-shadow: 0 -1px 5px -1px #000;
position: relative;
}
.step-col{
width: 120px;
text-align: center;
color: #333;
position: relative;
}
#progress{
position: absolute;
height: 100%;
width: 120px;
background: linear-gradient(to right, #1565c0, #1976d2);
}
small{
color: #fff;
font-weight: 700;
font-size: 0.8em;
}
#progress::after{
content: '';
height: 0;
width: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
position: absolute;
right: -20px;
top: 0;
border-left: 20px solid #1976d2;
}