aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/scss/blocks/_cover.scss
blob: f1f0422e3ddda4ed3e25f56b300e16fa29e83a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 {
    margin-right: 0.5em;
}

.td-cover-block {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: {
        repeat: no-repeat;
        position: 50% 0;
        size: cover;
    };

}