-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.css
More file actions
91 lines (77 loc) · 1.51 KB
/
forms.css
File metadata and controls
91 lines (77 loc) · 1.51 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
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;
}
html{
background: repeating-linear-gradient(purple,yellow,purple);
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
h1{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', 'Arial', 'sans-serif';
font-weight: bolder;
color: purple;
text-align: center;
letter-spacing: 5px;
text-shadow: -2px 2px 0 yellow, 2px -2px 0 yellow, 2px 2px 0 yellow, -2px -2px 0 yellow;
}
body{
height: auto;
width: auto;
}
#progForm{
margin: 100px auto;
padding: 40px;
width: 60%;
min-width: 250px;
background-color: darkslategray;
}
input{
padding: 10px;
width: 100%;
border: 1px solid black;
font-size: 15px;
font-weight: bold;
}
input.invalid{
background-color: crimson;
}
.slide{
display: none;
}
button{
font-size: 15px;
margin: 20px 0 0 0;
background-color: green;
color: white;
border: 1px solid white;
border-radius: 45%;
cursor: pointer;
}
button:hover{
opacity: 0.8;
}
#prevBtn{
background-color: grey;
}
#tabs{
text-align: center;
margin-top: 40px;
}
.ind{
height: 10px;
width: 10px;
background-color: crimson;
border: 1px solid white;
border-radius: 50%;
display: inline-block;
margin: 0 2px;
opacity: 0.5;
}
.ind.active{
opacity: 1;
}
.ind.finish{
background-color: green;
}