-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgcfiddle.css
More file actions
106 lines (88 loc) · 1.52 KB
/
Copy pathgcfiddle.css
File metadata and controls
106 lines (88 loc) · 1.52 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* GCFiddle css */
body {
background-color: Beige;
}
.flexBox {
float: left;
padding: 2px;
margin: 2px;
background-color: LightGrey;
/* font-size: 2em; */ /* Test */
}
.clearLeft {
clear: left;
}
.canvas {
width: 500px;
height: 500px;
background-color: #E6E6E6;
}
.legendButton {
border: 1px solid #7A7A7A;
background-color: LightGreen;
padding: 1px;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* currently Chrome and Opera */
}
.legendButton:hover {
background-color: LimeGreen
}
.label {
background-color: WhiteSmoke;
float: left;
width: 4em;
margin-right: 0.2em;
text-align: right;
padding: 0px 2px 0px 2px;
overflow: hidden;
display: block;
}
.area {
padding: 2px;
margin: 1px;
border: 0.5px solid #7A7A7A;
float: left;
}
.field {
padding: 2px 2px 2px 2px;
float: left;
}
.editable {
background-color: white;
}
.resizable {
resize: both;
overflow: auto;
}
.invalid {
border-color: red;
}
.leaflet-parking-icon {
background: lightgray;
border: 1px solid #666;
}
.leaflet-location-icon {
background: lightblue;
border: 1px solid #666;
}
.selectWrap select {
max-width: calc(22em - 6px);
text-overflow: ellipsis;
}
.textAreaWrap textArea {
min-width: max-content;
}
@media (max-width: 480px) {
.canvas {
width: 330px;
}
/*
.selectWrap select {
max-width: calc(22em - 6px);
}
*/
}