Added sass and changed basic structure

Many things to do.
This commit is contained in:
Stephan 2016-12-01 15:37:49 +01:00
parent ad4697dd9e
commit f2dfe32ca2
22 changed files with 1827 additions and 4 deletions

View file

@ -0,0 +1,23 @@
// Custom extends and mixins
// ------------------------------------------------------------------------------
@import "mixins";
@import "extends";
// Editor module styles
// ------------------------------------------------------------------------------
%wip {
border-right: $basic_space solid rgba(crimson, .8);
background-color: rgba(crimson, .1) !important;
}
.wip {
@extend %wip;
&:before, &:after {
content: "";
display: block;
height: 48px;
}
}
.wip_txt {
@extend %wip;
}