blob: 9c00f5e765ef14389f0a00bf50960f944af00cfe (
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
header[role="banner"] {
margin: 0 auto;
@include smcaps;
a {
text-decoration: none;
}
h1 {
margin: -10px 0 0 0;
padding: 0;
}
h1 a {
display: block;
margin: 0.25em auto 0 auto;
font-size: 0.875em;
font-weight: 300;
font-family: 'carrois_gothicregular', Helvetica, sans-serif;
line-height: 0.75em;
color: $brown;
}
h1 a:before {
content: "home-icon";
text-indent: -9999em;
background: url("logo-new-@2x-treeonly.png") center top no-repeat;
width: 95px;
height: 75px;
background-size: 95px;
background-size: 85px;
//if sox
#background: url("img/soxlogo.svg") center top no-repeat;
#background-size: 60px;
display: block;
margin: 0.75em auto 0;
}
h2 {
margin-top: 0.25em;
font-size: 0.675em;
font-style: italic;
font-weight: 300;
text-align: center;
}
@include breakpoint(beta) {
float: left;
position: relative;
bottom: 0;
h1, h2 {
text-align: left;
}
h1 {
width: 360px;
}
h1 a { line-height: 2.5em;}
h1 a:before {
display: inline-block;
background-size: 102px;
//if sox
#background: url("img/soxlogo.svg") center bottom no-repeat;
#background-size: 70px;
height: 85px;
width: 105px;
//if sox
#width: 80px;
margin-right: 10px;
}
h2 {
margin-left: 116px;
//if sox
#margin-left: 90px;
margin-top: -30px;
}
}
}
.black header h1 a, .dark header h1 a {
color: $body_font_light;
&:before {
background: url("logo-new-@2x-treeonly.png") center -75px no-repeat;
background-size: 92px;
}
@include breakpoint(gamma) {
&:before {
background-position-y: -65px;
}
}
}
nav[role="navigation"] {
border-top: 1px #444444 dotted;
border-bottom: 1px #444444 dotted;
//box-shadow: 0 3px 8px 0 #e6e6e6
padding-left: 20px;
padding-right: 20px;
margin-right: -20px;
margin-left: -20px;
margin-top: 1em;
padding: 0.25em 0.5em;
a {
text-decoration: none;
color: #505050;
}
ul {
@include smcaps;
max-width: 100%;
font-weight: 300;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 0;
@include constrain(85%);
}
li {
display: inline;
margin: 0 0.25em;
&:after {
content: "\00b7";
color: #999999;
padding-left: 0.75em;
}
}
li.last {
margin-right: 0;
&:after {
content: " ";
}
}
@include breakpoint(beta) {
float: right;
border: none;
margin: 52px 0 0 0;
padding: 0;
ul {
max-width: 50em;
}
}
}
.black nav[role="navigation"] a, .dark nav[role="navigation"] a {
color: $body_font_light;
}
.header-wrapper {
@extend %clearfix;
margin-bottom: 1em;
@include breakpoint(beta) {
border-bottom: 1px $brown solid;
position: relative;
}
@include breakpoint(gamma) {
max-width: $breakpoint-gamma;
margin-left: auto;
margin-right: auto;
}
@include breakpoint(delta) {
margin-top: 1.5em;
max-width: $breakpoint-delta;
}
@include breakpoint(epsilon) {
margin-top: 1.5em;
max-width: $max_width;
}
}
.black .header-wrapper, .dark .header-wrapper {
@include breakpoint(beta) {
border-bottom: 1px $body_font_light solid;
}
}
|