lychee/src/styles/main.scss

54 lines
969 B
SCSS
Raw Normal View History

2014-08-26 14:54:07 +00:00
/**
2015-02-01 21:08:37 +00:00
* @copyright 2015 by Tobias Reich
2014-08-26 14:54:07 +00:00
*/
@import 'etc';
2014-11-08 10:30:25 +00:00
@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;
}
2014-08-26 14:54:07 +00:00
html,
body {
min-height: 100%;
}
2014-11-08 10:30:25 +00:00
2014-08-26 14:54:07 +00:00
body {
2014-12-29 00:50:57 +00:00
background-color: #1d1d1d;
2014-11-08 10:30:25 +00:00
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
2014-08-26 14:54:07 +00:00
font-size: 12px;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
2014-11-08 10:30:25 +00:00
2015-01-31 21:30:15 +00:00
&.view { background-color: #0f0f0f; }
2014-08-26 14:54:07 +00:00
}
2014-11-08 10:30:25 +00:00
2014-08-26 14:54:07 +00:00
input {
-webkit-user-select: text !important;
-moz-user-select: text !important;
user-select: text !important;
}
2014-12-26 00:23:56 +00:00
.iconic {
width: 100%;
height: 100%;
}
2015-01-31 21:30:15 +00:00
#upload { display: none; }
2014-11-08 10:30:25 +00:00
@import 'animations';
@import 'content';
@import 'contextmenu';
@import 'header';
@import 'imageview';
@import 'infobox';
@import 'loading';
@import 'message';
@import 'multiselect';
@import 'mediaquery';