selfprivacy.org/_vendor/github.com/google/docsy/assets/scss/blocks/_cover.scss

26 lines
447 B
SCSS
Raw Normal View History

2024-04-21 23:04:16 +00:00
// A cover block is a full size cover with a fixed background for smaller screens.
@include td-box-height-modifiers(".td-cover-block");
.td-cover-logo {
2024-04-25 22:15:39 +00:00
margin-right: 0.5em;
2024-04-21 23:04:16 +00:00
}
.td-cover-block {
2024-04-25 22:15:39 +00:00
position: relative;
padding-top: 5rem;
padding-bottom: 5rem;
background: {
repeat: no-repeat;
position: 50% 0;
size: cover;
}
2024-04-21 23:04:16 +00:00
2024-04-25 22:15:39 +00:00
& > .byline {
@extend .small;
position: absolute;
bottom: 2px;
right: 4px;
}
}