2017-10-11 16:05:24 -04:00
|
|
|
@mixin sticky()
|
|
|
|
{
|
|
|
|
position: -moz-sticky;
|
|
|
|
position: -ms-sticky;
|
|
|
|
position: -o-sticky;
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
}
|
2016-07-07 18:54:16 -07:00
|
|
|
|
2018-12-21 11:15:59 +00:00
|
|
|
@mixin card() {
|
|
|
|
background-color: $color-card;
|
|
|
|
box-shadow: 1px 1px 3px 0px rgba(211,211,211,1);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: map-get($gray-shades, 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-07 18:54:16 -07:00
|
|
|
@mixin border-radius($radius)
|
|
|
|
{
|
|
|
|
-webkit-border-radius: $radius;
|
|
|
|
-moz-border-radius: $radius;
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2017-11-21 14:47:49 +00:00
|
|
|
@mixin border-radius-left($radius)
|
|
|
|
{
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-radius-right($radius)
|
|
|
|
{
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2018-05-23 12:37:21 +01:00
|
|
|
@mixin border-radius-top($radius)
|
|
|
|
{
|
|
|
|
border-top-left-radius: $radius;
|
|
|
|
border-top-right-radius: $radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin border-radius-bottom($radius)
|
|
|
|
{
|
|
|
|
border-bottom-left-radius: $radius;
|
|
|
|
border-bottom-right-radius: $radius;
|
|
|
|
}
|