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

61 lines
1017 B

/**
* @copyright 2014 by Tobias Reich
*/
@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: #222;
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;
}
}
.center {
position: absolute;
left: 50%;
top: 50%;
}
input {
-webkit-user-select: text !important;
-moz-user-select: text !important;
user-select: text !important;
}
.iconic {
width: 100%;
height: 100%;
}
@import 'animations';
@import 'content';
@import 'contextmenu';
@import 'font';
@import 'header';
@import 'imageview';
@import 'infobox';
@import 'loading';
@import 'message';
@import 'multiselect';
@import 'upload';
@import 'mediaquery';