selfprivacy.org/_vendor/github.com/google/docsy/assets/scss/support/_utilities.scss

53 lines
826 B
SCSS
Raw Normal View History

2024-04-25 22:15:39 +00:00
// Common utility classes
2024-04-21 23:04:16 +00:00
.td-border-top {
2024-04-25 22:15:39 +00:00
border: none;
border-top: 1px solid #eee;
2024-04-21 23:04:16 +00:00
}
.td-border-none {
2024-04-25 22:15:39 +00:00
border: none;
2024-04-21 23:04:16 +00:00
}
.td-block-padding {
2024-04-25 22:15:39 +00:00
padding-top: $td-block-space-top-base;
padding-bottom: $td-block-space-bottom-base;
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
@include media-breakpoint-up(md) {
padding-top: $td-block-space-top-base * 1.25;
padding-bottom: $td-block-space-bottom-base * 1.25;
}
2024-04-21 23:04:16 +00:00
}
.td-overlay {
2024-04-25 22:15:39 +00:00
position: relative;
&::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
&--dark::after {
background-color: rgba($dark, 0.3);
}
&--light::after {
background-color: rgba($light, 0.3);
}
&__inner {
2024-04-21 23:04:16 +00:00
position: relative;
2024-04-25 22:15:39 +00:00
z-index: 1;
}
2024-04-21 23:04:16 +00:00
}
.td-max-width-on-larger-screens {
2024-04-25 22:15:39 +00:00
@include media-breakpoint-up(lg) {
max-width: 80%;
}
}