You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
821 B
48 lines
821 B
|
|
@import "variables";
|
|
@import "mixins";
|
|
@import "scrollbars";
|
|
@import "forms";
|
|
@import "toolbar";
|
|
@import "settings";
|
|
@import "fonts";
|
|
|
|
@import "window";
|
|
@import "noFile";
|
|
@import "tips";
|
|
@import "slidesList";
|
|
@import "slide";
|
|
@import "blackout";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
-webkit-user-drag: none;
|
|
}
|
|
|
|
html, body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: color(background);
|
|
color: color(foreground);
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.titlebar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
app-region: drag;
|
|
height: 30px;
|
|
width: 100%;
|
|
user-select: none;
|
|
}
|
|
|
|
::selection {
|
|
background: transparentize(map-get($colors, "hightlight"), 0.4);
|
|
color: #333;
|
|
} |