-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_header.scss
61 lines (59 loc) · 940 Bytes
/
_header.scss
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
// Header
#header {
position: fixed;
top: 0;
background-color: $gray-darkest;
border-bottom: 2px solid $black;
padding: 20px 0px;
width: 100%;
color: $gray-light;
a {
color: $gray-light;
}
#sr-header-area, .redditname {
display: none;
}
#header-img {
padding-left: 10px;
}
.tabmenu {
margin-left: 20px;
li {
&:nth-child(n+5) {
display: none;
}
a {
position: relative;
top: -10px;
color: $gray-light;
background: none;
font-weight: 400;
padding: 15px 15px;
&:hover {
background-color: $gray-dark;
color: $gray-lighter;
}
}
&.selected {
a {
border: 0;
background-color: $gj-dark-green;
color: $gj-green;
}
}
}
}
#header-bottom-right {
position: absolute;
right: 10px;
background: none;
#userbarToggle {
background: none;
border: 0;
color: $gray-light;
}
}
}
.infobar.welcome {
display: none !important;
}