summaryrefslogtreecommitdiff
path: root/design/sass/_header.scss
blob: 9824ddde3232a429e60a08bcc826a50969d4ed0c (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
///********** class for header and footer menus *********{{{
.menu-item {
    color: lighten($secondary_link_color, 20);
    display: inline-block;
    margin: 0 0.25rem;
}
.menu-item:after {
    content: "\00b7";
    color: #9d9d9d;
    padding-left: 0.5rem;
}
.menu-item:first-of-type {
    margin-left: 0;
}
.menu-item:last-of-type {
    margin-right: 0;
}
.menu-item:last-of-type:after {
    content: " ";
}
.menu-item a, .menu-item a:visited {
    text-decoration: none;
    color: $secondary_link_color;
}
//}}}
///********** Header Styles *****************************{{{
.header-wrapper {
    padding-top: 6px;
    margin: 0 auto;
    //smcaps
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: mffnweb, Helvetica, sans-serif;
    text-align: center;
}
.header-wrapper a {
    text-decoration: none;
}
.header-wrapper ul {
    list-style-type: none;
    padding: 0;
}
.header-wrapper nav {
    border-top: 1px #444444 dotted;
    border-bottom: 1px #444444 dotted;
    margin: 1rem 0;
    padding: 0 0.5em;
    font-weight: 600;
    font-size: .8125rem;;
    line-height: 1.2;
}
// Rules for wider Layout
@media screen and (min-width: 750px) {
    .header-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px #f3efef solid;
        margin-top: 1.25rem;
        max-width: 96%;
    }
    .header-wrapper nav {
        border: none;
        margin-top: 1.7rem;
    }
}
//Slight adjust for full width
@media screen and (min-width: 1440px) {
    .header-wrapper {
        max-width: 1440px;
    }
}
//Logo styles
.logo-link {
    display: block;
    font-weight: 300;
    font-family: 'carrois_gothicregular', Helvetica, sans-serif;
    color: $secondary_link_color;
    font-size: 2rem;
}
.logo-link:before {
    display: block;
    content: "home-icon";
    background: url("logo-new-@2x-treeonly.png") center top no-repeat;
    width: 95px;
    height: 65px;
    background-size: 95px;
    background-size: 85px;
    margin: 5px auto;
    text-indent: -9999em;
}
@media screen and (min-width: 750px) {
    .logo-link {
        text-align: left;
        margin-top: 1.25rem;
    }
    .logo-link:before {
        float: left;
        height: 85px;
        width: 105px;
        background-size: 102px;
        margin: -1rem 10px -4px 0;
    }
}
//handle the funky text of the subtitle
.sitesubtitle {
    display: block;
    margin-top: -8px;
    margin-bottom: 10px;
    font-family: mffweb, Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    font-size: .75rem;
}
@media screen and (min-width: 750px) {
    .sitesubtitle {
        text-align: left;
    }
}
//}}}