forked from zekefarwell/josm-strava-heatmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.css
45 lines (44 loc) · 924 Bytes
/
content.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
button.josm-imagery {
border: none;
border-radius: 3px;
width: 40px;
height: 40px;
margin: 10px;
padding: 0;
background-color: white;
/* background-image: url('icons/icon.svg'); */
box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
cursor: pointer;
pointer-events: auto;
}
.josm-modal {
display: none;
}
.josm-modal.active {
display: block;
position: fixed;
z-index: 200;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.75);
}
.josm-modal-dialog {
background: white;
border-radius: 4px;
box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
max-width: 600px;
margin: 200px auto;
padding: 10px
}
.josm-modal-dialog code {
background-color: lightgray;
border-radius: 3px;
padding: 10px;
display: block;
}
.josm-modal-dialog pre {
margin: 0;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
}