django-allauth-ens/allauth_ens/scss/_mixins.scss

90 lines
1.5 KiB
SCSS
Raw Normal View History

2017-08-03 12:40:52 +02:00
@mixin hover {
&:hover { @content }
}
@mixin hover-focus {
@if $enable-hover-media-query {
&:focus { @content }
@include hover { @content }
} @else {
&:focus,
&:hover {
@content
}
}
}
@mixin clearfix() {
&::after {
display: block;
content: "";
clear: both;
}
}
@mixin ellipsis($text-overflow: ellipsis) {
& {
overflow: hidden;
text-overflow: $text-overflow;
white-space: nowrap;
}
}
2017-09-16 02:32:42 +02:00
@mixin transition($time: .3s) {
transition: background $time, color $time;
}
2017-08-03 12:40:52 +02:00
@mixin link {
2017-09-16 02:32:42 +02:00
@include transition;
2017-08-03 12:40:52 +02:00
color: $link-color;
font-size: inherit;
text-decoration: $link-decoration;
@include hover-focus {
2017-09-16 02:32:42 +02:00
//color: $link-hover-color;
2017-08-03 12:40:52 +02:00
text-decoration: $link-hover-decoration;
}
}
@mixin btn {
2017-09-16 02:32:42 +02:00
@include transition;
//width: 100%;
min-height: 30px;
2017-08-03 12:40:52 +02:00
border: 0;
2017-09-16 02:32:42 +02:00
padding: 10px 15px;
2017-08-03 12:40:52 +02:00
font-family: "Roboto Slab";
font-size: 18px;
2017-09-16 02:32:42 +02:00
text-align: center;
2017-08-03 12:40:52 +02:00
@include hover-focus {
text-decoration: none;
cursor: pointer;
}
}
@mixin btn-primary-hov {
color: $black;
@include hover-focus {
background: darken($brand-primary, 15%);
color: $white;
}
}
@mixin btn-success-hov {
2017-09-16 02:32:42 +02:00
background-color: $brand-success;
color: $white;
//background: $gray-lighter;
//color: $black;
2017-08-03 12:40:52 +02:00
@include hover-focus {
background: darken($brand-success, 15%);
color: $white;
}
}