Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 1x | <style>
:host #toolbar {
position: absolute;
display: flex;
justify-content: space-between;
align-items: center;
left: 0;
top: 0;
height: 18px;
width: 100%;
padding: 0 2px;
font-size: 1em;
line-height: 1.2;
}
:host #counter {
width: 100px;
}
:host #player {
text-align: center;
max-width: 100px;
font-weight: bold;
}
:host #menu {
width: 20px;
height: 20px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAt0lEQVQ4je2UwQqCQBCGf1fXgtjCWhC0LhJ28tT7P0gdOoh2Wg8lQam7dugauysJHeqDuX38zMDMAN9hT19lxjEJnO9YS5sTANDWT4Q41DrfMwWqiVw4sl8BQD+9zQFoA60IwiQLwiT7OOiHYVHKWZRyG9e4NixKOVFNCQCK+HF9PgqdT+x6HJkhI/95z5DTM67NMt6ulexyAHC9blMVRanzjd+GPNyLpLICAOc+u9p0aYH9gx2dJ6RgKz0wt+R/AAAAAElFTkSuQmCC');
background-repeat: no-repeat;
background-position: center center;
background-size: 20px 16px;
cursor: pointer;
position: relative;
}
:host #menu.hide {
display: none !important;
}
</style>
<div id="toolbar">
<div id="counter"></div>
<div id="player"></div>
<div id="menu"></div>
</div>
|