hisat-3n/docs/_sass/base/_utilities.scss

40 lines
581 B
SCSS
Raw Permalink Normal View History

2025-01-18 13:09:52 +00:00
// button.
.btn {
border-radius: 0.3em;
border: 1px solid;
display: inline-block;
padding: 0.5em 0.75em;
}
a.btn:hover {
background: $link-color;
color: $background-color;
text-decoration: none;
}
// margin.
.margin {
margin: $margin 0 !important;
}
.margin-top {
margin-top: $margin !important;
}
.margin-bottom {
margin-bottom: $margin !important;
}
// state.
.disabled {
opacity: 0.7;
}
// clearfix.
.clearfix {
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}