-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
75 lines (62 loc) · 1.09 KB
/
style.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
html, body {
max-width: 100%;
overflow-x: hidden;
}
#browser {
position: absolute;
margin: 0;
}
#info-line {
border: 1px solid #aaaaaa;
padding: 2px;
position: absolute;
right: 0px;
top: 1px;
min-width: 14%;
font-size: 9pt;
}
#controls {
visibility: hidden;
position: absolute;
top: 4px;
left: 100px;
z-index: 1000;
}
#controls > button {
border: 1px solid #aaaaaa;
border-radius: 2px;
padding-left: 6px;
padding-right: 6px;
height: 23px;
min-width: 20px;
}
button#scrollRight {
margin-left: -2px;
margin-right: 4px;
}
button#zoomIn {
margin-left: -2px;
margin-right: 4px;
}
#infoBox {
position: absolute;
display: inline-block;
z-index: 10000;
visibility: hidden;
padding: 5px;
border: 2px solid gray;
border-radius: 5%;
background-color: #ffffff;
min-height: 100px;
min-width: 10px;
max-width: 80%;
margin-top: 9.7em;
font-family: sans-serif;
}
#infoBox > div {
float: left;
margin: 1.0em 1.2em;
}
#infoBox > div > p {
margin: 0.1em;
}