This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelc-ui.css
102 lines (80 loc) · 1.68 KB
/
elc-ui.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
92
93
94
95
96
97
98
99
100
101
102
@import "elc-ui-behavior.css";
.elc-ui-root .flex-row {
width: 100%;
display: flex;
-ms-flex-direction: row;
flex-direction: row;
}
.elc-ui-root .flex-row > input {
flex-grow: 1;
}
.elc-ui-root .button-group {
width: 100%;
display: flex;
flex-direction: row;
margin-top: 0.5em;
}
.elc-ui-root .button-group > button {
flex-grow: 1;
padding-top: 0.5em;
}
.elc-ui-root .button-group > button:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.elc-ui-root .button-group > button:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.elc-ui-root .radio-group {
width: 100%;
display: flex;
flex-direction: row;
}
.elc-ui-root .radio-group > :first-child {
flex-grow: 1;
}
.elc-ui-root button[type=submit] {
background-color: green;
color: white;
}
.elc-ui-root button[type=reset] {
background-color: red;
color: white;
}
.elc-ui-root input[type=date] {
width: 100%;
}
.elc-ui-root section {
border: 1px solid gray;
padding: 0.3em 1em 1em 1em;
margin: 1em 0.2em;
}
.elc-ui-root section > h1 {
font-size: 12pt;
text-align: center;
}
.elc-ui-root button[type=submit]:hover {
background-color: darkgreen;
}
.elc-ui-root button[type=reset]:hover {
background-color: darkred;
}
.elc-ui-root button:only-of-type {
padding: 0.3em 0.5em;
}
.elc-ui-root button:only-of-type, .find-nearest-route-location-section input {
width: 100%;
}
.route-selector {
flex-flow: row wrap;
}
.route-selector > input:first-child {
flex: 1;
}
.route-selector > :nth-child(2) {
flex: 3;
}
.route-selector > :last-child {
flex: 2;
}