1
0
Fork 0
peertube/client/src/sass/_mixins.scss

63 lines
1.0 KiB
SCSS
Raw Normal View History

2017-12-01 12:08:46 +00:00
@mixin disable-default-a-behaviour {
&:hover, &:focus {
text-decoration: none !important;
outline: none !important;
}
}
2017-12-01 16:38:26 +00:00
@mixin peertube-input-text($width) {
display: inline-block;
height: $button-height;
width: $width;
background: #fff;
border: 1px solid #C6C6C6;
border-radius: 3px;
padding-left: 15px;
&::placeholder {
color: #585858;
}
}
2017-12-07 09:02:01 +00:00
@mixin orange-button {
color: #fff;
background-color: $orange-color;
&:hover {
background-color: $orange-hoover-color;
}
}
@mixin grey-button {
background-color: $grey-color;
color: #585858;
&:hover {
background-color: $grey-hoover-color;
}
}
2017-12-01 16:38:26 +00:00
@mixin peertube-button {
border: none;
font-weight: $font-semibold;
font-size: 15px;
height: $button-height;
line-height: $button-height;
border-radius: 3px;
text-align: center;
padding: 0 17px 0 13px;
cursor: pointer;
}
@mixin peertube-button-link {
display: inline-block;
@include disable-default-a-behaviour;
2017-12-06 14:07:17 +00:00
@include peertube-button;
2017-12-01 16:38:26 +00:00
}
2017-12-04 09:34:40 +00:00
@mixin avatar ($size) {
width: $size;
height: $size;
}