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.
lychee/src/styles/main.scss

75 lines
1.7 KiB

// Functions --------------------------------------------------------------- //
@function black($opacity) {
@return rgba(0, 0, 0, $opacity);
}
@function white($opacity) {
@return rgba(255, 255, 255, $opacity);
}
// Properties -------------------------------------------------------------- //
$shadow: 0 -1px 0 black(.2);
// Colors ------------------------------------------------------------------ //
$colorBlue : #2293EC;
$colorRed : #d92c34;
// Animations -------------------------------------------------------------- //
$timing : cubic-bezier(.51, .92, .24, 1);
$timingBounce : cubic-bezier(.51, .92, .24, 1.15);
// Rest -------------------------------------------------------------------- //
@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;
}
.svgsprite {
display: none;
}
.iconic {
width: 100%;
height: 100%;
}
#upload { display: none; }
// Files ------------------------------------------------------------------- //
@import 'animations';
@import 'content';
@import 'basicContext.custom';
@import 'basicContext.extended';
@import 'header';
@import 'imageview';
@import 'sidebar';
@import 'loading';
@import 'message';
@import 'multiselect';