mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-23 02:42:37 +01:00
b2705bacb6
- Allow toggle sidebar - Allow zoom with CTRL+mousewheel #254 - Improve performance - modularize code - remove standalone fontawesome
59 lines
1.0 KiB
CSS
59 lines
1.0 KiB
CSS
html {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
color: white;
|
|
background: black;
|
|
}
|
|
|
|
/* https://github.com/electron/electron/issues/2538 */
|
|
.no-user-select :not(input):not(textarea),
|
|
:not(input):not(textarea)::after,
|
|
:not(input):not(textarea)::before {
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
cursor: default;
|
|
}
|
|
|
|
.help-sheet {
|
|
background: white;
|
|
color: black;
|
|
padding: 1em 2em;
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.help-sheet h1 {
|
|
font-size: 1.2em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.help-sheet kbd {
|
|
display: inline-block;
|
|
padding: 3px 5px;
|
|
font-size: 11px;
|
|
line-height: 10px;
|
|
color: #555;
|
|
vertical-align: middle;
|
|
background-color: rgba(0,0,0,0.03);
|
|
border: solid 1px #ccc;
|
|
border-bottom-color: #bbb;
|
|
border-radius: 3px;
|
|
box-shadow: inset 0 -1px 0 #bbb;
|
|
}
|
|
|
|
.dragging-helper-class {
|
|
color: rgba(0,0,0,0.5);
|
|
}
|
|
|
|
#timeline-scroller::-webkit-scrollbar {
|
|
display: none;
|
|
} |