-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
85 lines (71 loc) · 1.06 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
* {
box-sizing: border-box;
}
body {
background-color: #f1f1f1;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
min-width: 150px;
width: 25%;
}
#regForm {
background-color: #ffffff;
margin: 30px auto;
font-family: Raleway;
padding: 2% 5%;
width: 45%;
min-width: 300px;
}
input {
padding: 10px;
width: 100%;
font-size: 17px;
font-family: Raleway;
border: 1px solid #aaaaaa;
}
input.invalid {
background-color: #ffdddd;
}
.loader img {
width: 50px;
height: 50px;
}
.loader {
display: none;
}
button {
background-color: #0d9548;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 17px;
font-family: Raleway;
cursor: pointer;
border-radius: 5px;
}
button:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
.step {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbbbbb;
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
display: none;
}
.step.active {
opacity: 1;
}
.step.finish {
background-color: #4CAF50;
}