blob: df1504ace3ddb02beb1718ce40f65e947c177692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// sublab specific stlyesheet customizations
// use 7 columns for week overview on index
.dow-columns {
@media #{$large-up} {
@include grid-column($columns: 1.7);
}
}
// sublab logo
.top-bar .name a:before {
background-image: url('../images/sublab-logo-trans-small.png');
background-repeat: no-repeat;
content: "";
display: inline-block;
height: 48px;
margin-right: 10px;
position: relative;
width: 60px;
}
|