-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildStyle.css
91 lines (81 loc) · 1.36 KB
/
buildStyle.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
* {
box-sizing: border-box;
}
#map {
width: 10%;
margin-left: 60%;
margin-right: 20%;
margin-top: 50px;
height: 150px;
padding: 20%;
background-color: grey;
}
body {
background-image: url("images/1.jpg");
}
#regForm {
background-color: #273c75;
opacity: 0.9;
margin-left: 5%;
font-family: Raleway;
font-size: 24px;
color:white;
padding: 40px;
width: 50%;
min-width: 300px;
float: left;
height: 60%;
}
h1 {
text-align: center;
}
input {
padding: 10px;
width: 100%;
font-size: 17px;
font-family: Raleway;
border: 1px solid #aaaaaa;
}
/* Mark input boxes that gets an error on validation: */
input.invalid {
background-color: #ffdddd;
}
/* Hide all steps by default: */
.tab {
display: none;
}
button {
background-color: #44bd32;
width: 150px;
color: #ffffff;
border: none;
padding: 10px 20px;
font-size: 26px;
font-family: Raleway;
cursor: pointer;
}
button:hover {
opacity: 0.8;
}
#prevBtn {
background-color: #bbbbbb;
}
/* Make circles that indicate the steps of the form: */
.step {
height: 15px;
width: 15px;
margin: 0 5px;
background-color: #bbbbbb;
border: none;
border-radius: 0px;
display: inline-block;
opacity: 0.5;
}
.step.active {
opacity: 1;
}
/* Mark the steps that are finished and valid: */
.step.finish {
background-color:#9b59b6;
opacity: 100%;
}