summaryrefslogtreecommitdiffstats
path: root/src/_header.scss
blob: 28448a03ebef3883d25dcb00e763c9f1f0c16a7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@mixin styles {
    .pageHeader {
        background-image: url(../images/style-6/custom/header.jpeg);
        background-repeat: repeat-x;
    }

    .pageHeaderFacade {
        > .layoutBoundary {
            padding-block: 0;
        }
    }

    .pageHeaderLogo {
        > a {
            padding-block: 0;
        }
    }

    .userPanel > ul > li > a > fa-icon {
        --font-size: 18px;
        --icon-size: 24px;
    }

    @media screen and (max-width: 1024px) {
        .pageHeaderLogo {
            > a {
                display: block;
                height: auto;
                padding-inline-start: 0;
                margin-inline-start: -6px;
            }

            .pageHeaderLogoSmall {
                max-height: 50px;
            }
        }
    }
}