add uses page
This commit is contained in:
parent
80ea9ad3cb
commit
0763a30859
16 changed files with 185 additions and 19 deletions
18
assets/css/_mixins.scss
Normal file
18
assets/css/_mixins.scss
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue