moved to utilities/ and content/

This commit is contained in:
koester 2017-12-23 11:42:20 +01:00
parent 06ad7dc2a6
commit ffa7aa0869
3 changed files with 0 additions and 128 deletions

View file

@ -1,61 +0,0 @@
.border {
border: 2px solid $primary;
}
.border,
.border-1,
.child-borders>*:nth-child(6n+1) {
@include border-style(1);
}
.border-2,
.child-borders>*:nth-child(6n+2) {
@include border-style(2);
}
.border-3,
.child-borders>*:nth-child(6n+3) {
@include border-style(3);
}
.border-4,
.child-borders>*:nth-child(6n+4) {
@include border-style(4);
}
.border-5,
.child-borders>*:nth-child(6n+5) {
@include border-style(5);
}
.border-6,
.child-borders>*:nth-child(6n+6) {
@include border-style(6);
}
.child-borders>* {
border: 2px solid $primary;
}
.border-white {
border-color: $white;
}
.border-dotted {
border-style: dotted;
}
.border-dashed {
border-style: dashed;
}
.border-thick {
border-width: 5px;
}
@each $colorName, $color in $colors {
.border-#{$colorName} {
border-color: $color;
}
}

View file

@ -1,39 +0,0 @@
html {
font-size: $global-font-size;
font-family: $body-font, sans-serif;
color: $font-color;
}
p, a, button, table, thead, tbody, th, tr, td, input, textarea, select, option {
font-family: $body-font, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: $header-font, sans-serif;
font-weight: normal;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 3rem;
}
h3 {
font-size: 2rem;
}
h4 {
font-size: 1.5rem;
}
h5 {
font-size: 1rem;
}
h6 {
font-size: .8rem;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}

View file

@ -1,28 +0,0 @@
.shadow {
@include shadow();
&.shadow-large {
@include shadow(large);
}
&.shadow-small {
@include shadow(small);
}
&.shadow-hover {
&:hover {
@include shadow(hover);
}
}
}
.child-shadows > * {
@include shadow();
}
.child-shadows-hover > * {
@include shadow();
&:hover {
@include shadow(hover);
}
}