-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (61 loc) · 966 Bytes
/
style.css
File metadata and controls
67 lines (61 loc) · 966 Bytes
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
:root {
--success-color: #2ecc71;
--error-color: #e74c3c;
}
*{
text-decoration: none;
}
.text-primary{
color: #3693ff;
}
a{
color: #fff;
}
body{
background-color: #333;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.move{
margin-left: 50px;
}
.submit{
background-color: white;
color: #3693ff;
}
.container{
margin: 20%;
background-color: wheat;
padding: 10px;
border-radius: 10px;
margin-top: 20px;
}
#table{
margin: 20%;
background-color: white;
margin-top: -160px;
padding: 5px;
}
sup{
color: red;
}
input.valid{
border-color: #36cc36;
}
input.invalid{
border-color: red;
}
input + p{
font-family: Arial, Helvetica, sans-serif;
font-size: 0.9em;
font-weight: bold;
text-align: center;
margin: 0 10px;
color: red;
opacity: 0;
height: 0;
}
input.invalid + p{
opacity: 1;
height: 0;
margin-bottom:20px;
}