blob: 71002de98ddd5a717e8f992382c1e42dc73a3a84 (
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
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
|
html, body {
height: 100%;
overflow: hidden;
}
#map {
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
}
body {
margin:0;
padding:0px;
font:14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color:#00B7FF;
}
#sidebar {
top: 5px;
left: 5px;
z-index: 2;
width: 350px;
height: 99vh;
position: relative;
float: left;
background-color: #7b7b7b33;
border-radius: 10px;
visibility: hidden;
display: flex;
flex-direction: column;
}
#details-header {
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
#report-container {
overflow: auto;
height: 80vh;
}
#report {
background-color: #5694AD;
box-shadow: 10px 10px 8px -5px #888;
width: 90%;
margin-left: auto;
margin-right: auto;
margin-bottom: 5px;
padding: 0px;
border-radius: 10px;
display: flex;
justify-content: flex-end;
flex-direction: column;
}
#report strong {
font-size: 22px;
font-style: italic;
margin: auto;
padding: 5px;
}
#report span {
background-color: white;
padding: 15px;
font-weight: lighter;
font-size: large;
text-align: center;
overflow-wrap: break-word;
word-wrap: break-word;
}
#btn-container {
width: 350px;
position: absolute;
bottom: 0;
margin-top: 10px;
margin-bottom: 10px;
}
#btn-container button {
box-shadow: 5px 5px 8px #888;
}
.details-btn {
position: relative;
margin-top: 4px;
margin-bottom: 4px;
border-radius: 10px;
font-size: 18px;
padding: 10px;
}
#pending-btn {
background-color: orange;
float: left;
margin-left: 10px;
}
#completed-btn {
background-color: #2bbd2b;
float: left;
margin-left: 10px;
}
#close-btn {
background-color: red;
float: right;
margin-right: 10px;
}
#toggle-container {
position: fixed;
float: right;
z-index: 2;
bottom: 25px;
right: 25px;
}
|