-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
150 lines (147 loc) · 2.74 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: "poppins", sans-serif;
}
.container {
width: 600px;
height: 650px;
margin: 2rem auto;
background-color: white;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border-radius: 5px;
position: relative;
margin-top: 30px;
margin-inline: auto;
}
h3 {
text-align: center;
margin-bottom: 1rem;
color: var(--dark-color);
font-size: 2rem;
}
.container form {
width: 550px;
position: absolute;
top: 50px;
left: 20px;
font-family: inherit;
transition: 0.5s ease-in;
margin-top: 30px;
margin-inline: auto;
}
form input:focus {
outline: none;
border-right:solid rgb(226, 30, 30) 5px;
}
.btn_box {
width: 100%;
margin: 30px auto;
text-align: center;
}
form button {
width: 110px;
height: 35px;
margin: 0 10px;
background-color: var(--line-border-fill);
border: none;
outline: none;
cursor: pointer;
font-size: 0.9rem;
font-family: inherit;
border-radius: 5px;
color: var(--light-gray-color);
}
form button:active {
transform: scale(0.98);
}
#form2 {
left: 6000px;
}
#form3 {
left: 600px;
}
.progress_container {
width: 350px;
display: flex;
justify-content: space-between;
margin: 2rem auto;
position: relative;
}
.progress_container::before {
content: "";
background-color: var(--light-gray-color);
position: absolute;
transform: translateY(-50%);
height: 4px;
width: 100%;
z-index: 1;
}
.progress {
background-color: var(--line-border-fill);
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
height: 4px;
width: 0%;
z-index: 1;
transition: 0.4s ease-in;
}
.circle {
background-color: var(--light-gray-color);
height: 30px;
width: 30px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
z-index: 1;
transition: 0.4s ease;
}
.circle.active {
border-color: var(--line-border-empty);
color: var(--white-color);
background-color: gray;
}
.label {
position: absolute;
top: 8px;
left: 0;
color: #43454e;
pointer-events: none;
transform-origin: left center;
transition: transform 250ms;
font-family: "Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052,
serif;
}
.input:focus + .label,
.input:not(:placeholder-shown) + .label {
transform: translateY(-100%) scale(0.75);
}
.input {
font-size: 20px;
width: 100%;
padding: 8px 0;
padding-right: 30px;
color: #333;
outline: none;
border: none;
border-bottom: 1px solid black;
}
.input-wrapper {
position: relative;
margin-inline: auto;
max-width: 500px;
margin-bottom: 10px;
}
.dropdown {
outline: 0;
background: #f1f1f1;
color: #000000;
padding: 4px;
border-radius: 9px;
}