2015-01-06 14:01:15 +01:00
|
|
|
body {
|
|
|
|
font-size: 13px;
|
|
|
|
margin: 0;
|
|
|
|
overflow-y: hidden;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
#toolbar {
|
|
|
|
background-color: #eee;
|
|
|
|
border: none;
|
|
|
|
box-sizing: border-box;
|
2015-01-16 11:42:34 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2015-01-06 14:01:15 +01:00
|
|
|
height: 4em;
|
|
|
|
padding: 1em;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#toolbar > * {
|
|
|
|
display: inline-block;
|
2015-03-18 18:00:07 +01:00
|
|
|
position: relative;
|
2015-01-06 14:01:15 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
#toolbar button {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 0 0 0 1em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2015-03-04 01:11:32 +01:00
|
|
|
#pageSelector {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
2015-01-06 14:01:15 +01:00
|
|
|
#toolbar #refresh {
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
padding: 2px 0;
|
|
|
|
font-size: 14px;
|
|
|
|
min-width: 20em;
|
|
|
|
max-width: 40em;
|
|
|
|
}
|
|
|
|
select option {
|
|
|
|
max-width: 40em;
|
|
|
|
}
|
2015-03-18 18:00:07 +01:00
|
|
|
#popupToggler {
|
|
|
|
opacity: 0.25;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
body.popupEnabled #popupToggler {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2015-01-06 14:01:15 +01:00
|
|
|
#content {
|
|
|
|
border: 0;
|
|
|
|
box-sizing: border-box;
|
2015-01-16 11:42:34 +01:00
|
|
|
-moz-box-sizing: border-box;
|
2015-01-06 14:01:15 +01:00
|
|
|
height: calc(100vh - 4em);
|
|
|
|
margin-top: 4em;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-03-18 18:00:07 +01:00
|
|
|
#popup {
|
|
|
|
border: 1px solid gray;
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
right: 2px;
|
|
|
|
top: calc(4em + 2px);
|
|
|
|
}
|
|
|
|
body.popupEnabled #popup[src^="popup.html"] {
|
|
|
|
display: initial;
|
|
|
|
}
|