-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
62 lines (55 loc) · 864 Bytes
/
Style.css
File metadata and controls
62 lines (55 loc) · 864 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
h1{
font-weight: normal;
margin: 20px auto;
text-align: center;
}
form{
width: 700px ;
margin: 20px auto;
}
table td{
vertical-align: middle;
font-size: 26px;
width: 10%;
}
input{
box-sizing: border-box;
font-size: 24px;
border: 1px solid #ccc;
border-radius: 6px;
outline: none !important;
}
.checkbox{
width: 16px;
height: 16px;
}
.menu{
width: 200px;
height: 30px;
font-size: 22px;
}
select option{
font-size: 20px;
}
/*Validation Style*/
input.valid{
border-color: #36cc36;
}
input.invalid{
border-color: orange;
}
input + p{
font-family: arial;
font-size: 0.9em;
font-weight: bold;
text-align: center;
margin: 0 10px;
color: orange;
opacity: 0;
height: 0;
}
input.invalid +p{
opacity: 1;
height: auto;
margin-bottom: 20px;
}