-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-grouper.css
128 lines (116 loc) · 2.04 KB
/
data-grouper.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body{
margin: 0px;
}
body, div, span {
font: 400 11px system-ui;
}
input, select {
padding-left: 4px;
padding-right: 4px;
padding-top: 4px;
padding-bottom: 4px;
border: 1px solid grey;
outline: none;
outline-width: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}
.container {
width: 90vw;
max-width: 90vw;
height: 80vh;
border: 1px solid lightgrey;
margin-left: 5vw;
margin-top: 5vh;
text-align: center;
}
#map{
width: 90vw;
height: 80vh;
}
#message {
position: absolute;
left: 50vw;
top: 6vw;
width: 50vw;
height: 25px;
margin-top: -32px;
margin-left: -25vw;
font-weight: bold;
text-align: center;
line-height: 18px;
background-color: #FFFFC7;
padding-top: 3px;
display: none;
}
#agent-task {
position: absolute;
left: 5vw;
top: 90px;
width: calc(19vw - 8px);
height: 18px;
overflow: hidden;
white-space: nowrap;
margin-top: -36px;
padding: 4px;
text-align: left;
line-height: 18px;
background-color: #00A000;
color: #fff;
}
#notes {
position: absolute;
left: 25vw;
top: 90px;
width: calc(70vw - 8px);
height: 18px;
overflow: hidden;
white-space: nowrap;
margin-top: -36px;
padding: 4px;
text-align: left;
line-height: 18px;
}
.notes-with-data {
background-color: #A00000;
color: #FFF;
}
.header{
padding: 20px 70px;
}
.pull-right{
float: right;
}
.pull-left{
float: left;
}
.btn {
font-size: 14px;
padding: 6px 30px;
margin-bottom: 0;
display: inline-block;
text-decoration: none;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid lightgrey;
}
.btn:focus,
.btn:active:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus {
color: #333;
text-decoration: none;
}
.btn:active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}