blob: 63e51ddc2c9db74754bdbfd3463e6fb7245f8b35 (
plain)
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
|
.formRow {
width: 100%;
display: flex;
flex-direction: column;
}
.formRow-label {
font-size: 20px;
color: #404040;
}
.formRow-input > input, .formRow-input > select {
margin: 3px;
width: 100%;
border-radius: 5px;
border: none;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
padding: 5px;
font-size: 1.4em;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.formRow-input > input[readonly="readonly"] {
background-color: #bebebe;
color: #4b4b4b;
}
.formInput[type="date"], .formInput[type="time"] {
padding: 5px;
font-size: 1.6em;
}
.formRow-input > select:hover, .formRow-input > input:not([readonly="readonly"]):hover {
background-color: #fbfbfb;
}
.formButtons {
display: flex;
flex-direction: row;
margin-top: 5px;
}
.formButtons > button {
margin: 5px;
width: 50%;
padding: 5px;
border: none;
border-radius: 7px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
.formButtons > button:hover {
background-color: #dadada;
}
.formButtons > button:focus {
background-color: #d5d5d5;
}
|