54 lines
969 B
SCSS
Executable File
54 lines
969 B
SCSS
Executable File
/**
|
|
* @copyright 2015 by Tobias Reich
|
|
*/
|
|
|
|
@import 'etc';
|
|
@import 'reset';
|
|
|
|
* {
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
user-select: none;
|
|
transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #1d1d1d;
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
font-size: 12px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-smoothing: antialiased;
|
|
|
|
&.view { background-color: #0f0f0f; }
|
|
}
|
|
|
|
input {
|
|
-webkit-user-select: text !important;
|
|
-moz-user-select: text !important;
|
|
user-select: text !important;
|
|
}
|
|
|
|
.iconic {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#upload { display: none; }
|
|
|
|
@import 'animations';
|
|
@import 'content';
|
|
@import 'contextmenu';
|
|
@import 'header';
|
|
@import 'imageview';
|
|
@import 'infobox';
|
|
@import 'loading';
|
|
@import 'message';
|
|
@import 'multiselect';
|
|
@import 'mediaquery'; |