blob: 4c51a341cdca9c7e37b71633e2ed1891889c7a14 (
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
|
$custom-color: #66bbaa;
a {
color: $custom-color;
}
//
// MASTHEAD
//
#masthead {
background-color: $custom-color;
border-bottom: none;
// make the masthead clickable by replacing the
// site name link with the masthead image:
.title {
padding: 0px;
.sitename a {
display: block;
background: url(/img/masthead.png) 0 0 no-repeat;
font-size: 0px;
height: 100px;
background-size: auto 100px;
}
}
}
// make the home page masthead slightly larger
body.home #masthead {
.sitename a {
height: 150px;
background-size: auto 150px;
}
}
//
// FOOTER
//
#footer .links {
background-color: $custom-color;
}
|