Added main.scss
This commit is contained in:
parent
8cb84641ed
commit
5a2dc947dd
File diff suppressed because one or more lines are too long
54
assets/scss/main.scss
Executable file
54
assets/scss/main.scss
Executable file
@ -0,0 +1,54 @@
|
|||||||
|
/**
|
||||||
|
* @author Tobias Reich
|
||||||
|
* @copyright 2014 by Tobias Reich
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import "reset";
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
body.view {
|
||||||
|
background-color: #0f0f0f;
|
||||||
|
}
|
||||||
|
.center {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top:50%;
|
||||||
|
}
|
||||||
|
* {
|
||||||
|
-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;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
-webkit-user-select: text !important;
|
||||||
|
-moz-user-select: text !important;
|
||||||
|
user-select: text !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@import "animations";
|
||||||
|
@import "content";
|
||||||
|
@import "contextmenu";
|
||||||
|
@import "font";
|
||||||
|
@import "header";
|
||||||
|
@import "imageview";
|
||||||
|
@import "infobox";
|
||||||
|
@import "loading";
|
||||||
|
@import "message";
|
||||||
|
@import "misc";
|
||||||
|
@import "multiselect";
|
||||||
|
@import "tooltip";
|
||||||
|
@import "upload";
|
||||||
|
@import "mediaquery";
|
@ -19,7 +19,7 @@ paths = {
|
|||||||
'../assets/js/*.js'
|
'../assets/js/*.js'
|
||||||
],
|
],
|
||||||
css: [
|
css: [
|
||||||
'../assets/scss/*.scss'
|
'../assets/scss/main.scss'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user