move styles and js to the root directory

This commit is contained in:
Andrew Croce
2018-08-03 09:09:07 -04:00
parent 6d884f9e5b
commit bf3054908c
36 changed files with 1917 additions and 2 deletions

33
styles/core/_util.scss Normal file
View File

@@ -0,0 +1,33 @@
.nowrap {
white-space: nowrap;
}
@mixin hide {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.hide {
@include hide;
}
@mixin unhide {
border: unset;
clip: unset;
height: unset;
margin: unset;
overflow: unset;
padding: unset;
position: unset;
width: unset;
}
@mixin line-max {
max-width: 45em;
}