aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss/custom/_header.scss
blob: 137703526e62da2a9827a8ccda0617154e1bb630 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* ------------- Menu Mobile sin JS ---------------- */
/* input hidden */

#navbar-toggle-cbox {
    display: none;
}

label[for=navbar-toggle-cbox] {
    cursor: pointer;
}

#navbar-toggle-cbox:checked ~ .navbar-menu {
    display: block;
}

/*- ----------- End Menu Mobile sin JS ------------- */
/* navigation */

.navbar {
    background-color: #0c0f0f;
    a {
        color: whitesmoke;
    }
    &.is-social-center {
        align-items: stretch;
        background-color: transparent;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-grow: 0;
        flex-shrink: 0;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        -webkit-box-align: stretch;
        -webkit-box-pack: center;
        -webkit-box-flex: 0;
        -ms-flex-pack: center;
        -ms-flex-align: stretch;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        > a.navbar-item {
            color: #4a4a4a;
            background-color: transparent;
            &:hover {
                color: #dd7325;
            }
        }
    }
}

/* main-header */

.main-header {
    .title {
        color: whitesmoke;
    }
    .subtitle {
        color: #dd7325;
    }
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
    .hero {
        background-color: #161c1c;
    }
}