1
0
Fork 0

add uses page

This commit is contained in:
Moritz Ruth 2019-03-30 14:56:05 +01:00
parent 80ea9ad3cb
commit 0763a30859
16 changed files with 185 additions and 19 deletions

18
assets/css/_mixins.scss Normal file
View file

@ -0,0 +1,18 @@
@mixin arrow($length, $angle, $color) {
border-color: $color;
border-bottom: solid;
border-right: solid;
border-width: 2px;
width: $length;
height: $length;
transform: rotate($angle + -135deg);
}
@mixin hoverShadow {
box-shadow: none;
transition: box-shadow 0.3s ease-out;
&:hover {
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}
}