lychee/src/styles/main.scss

62 lines
1.0 KiB
SCSS
Raw Normal View History

2014-08-26 14:54:07 +00:00
/**
* @copyright 2014 by Tobias Reich
*/
@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
&.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
.center {
position: absolute;
left: 50%;
2014-12-28 22:29:01 +00:00
top: 50%;
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%;
}
2014-11-08 10:30:25 +00:00
@import 'animations';
@import 'content';
@import 'contextmenu';
@import 'font';
@import 'header';
@import 'imageview';
@import 'infobox';
@import 'loading';
@import 'message';
@import 'multiselect';
@import 'upload';
@import 'mediaquery';