summaryrefslogtreecommitdiffstats
path: root/blog/_assets/stylesheets/_header.scss
blob: fc93a19fa4d8ff06747f25faefc5d769b860ccf6 (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
#header {
    width: 100%;
    font-weight: bold;

    #logo {
        text-align: center;
        float: left;
        p {
            margin-top: 0;
        }

        @media screen and (min-width: 28cm) {
            width: 50%; //479px;
        }
    }

    #banner-pos-1 {
        text-align: center;
        float: left;
        visibility: hidden;
        display: none;

        @media screen and (min-width: 28cm) {
            width: 50%; //479px;
            visibility: visible;
            display: block;
        }
    }

    #page-menu {
        clear: both;
    }
}