-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
67 lines (58 loc) · 1.07 KB
/
main.css
File metadata and controls
67 lines (58 loc) · 1.07 KB
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
@font-face {
font-family: "Ubuntu";
src: url("/assets/fonts/Ubuntu-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("/assets/fonts/Ubuntu-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Ubuntu";
src: url("/assets/fonts/Ubuntu-Bold.ttf") format("truetype");
font-weight: 600;
font-style: normal;
}
/* Reset */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Ubuntu", sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
/* center child */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.form {
width: 100%;
max-width: 500px;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #f00;
display: grid;
grid-template-columns: 1fr 3fr;
}
/* sidebar */
.progress {
background-color: #f4f4f4;
z-index: 1000;
}
.step {
display: none;
}
.step--active {
display: block;
}