blob: 7f984191f075e620faf8bf04b08a4df63b731f2d (
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
|
.head-wrapper {
height: 65px;
box-shadow: 0 -1px 0 #e7e2ee inset;
background: #fff;
}
header {
@include constrain_wide;
.left {
float: left;
a {
display: inline-block;
padding-left: 0;
}
}
.right {
margin-top: 4px;
float: right;
}
}
nav {
@include fancy-sans-bold;
letter-spacing: 1px;
margin: 0 0 10px;
ul {
list-style-type: none;
padding: 0;
li {
display: inline;
}
}
a {
@include fontsize(14);
text-decoration: none;
color: #444;
font-weight: normal;
padding: 6px;
&:visited {
color: #444;
}
&:hover {
color: $link_color;
}
}
.btn {
display: inline-block;
background: transparent;
color: $link_color !important;
border: 1px solid $link_color;
border-radius: 4px;
&:hover {
color: white !important;
border-color: $link_color;
background-color: $link_color;
}
}
}
|