76 lines
1.3 KiB
SCSS
76 lines
1.3 KiB
SCSS
|
// Force table width to be 100%
|
||
|
.ts_styled,
|
||
|
.ts_vstyled {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
// This line is needed, since RSS2.4 has this in its PHP source code
|
||
|
.ts_styled thead th:first-child {
|
||
|
width: 120px;
|
||
|
}
|
||
|
|
||
|
// Hide site-logo
|
||
|
.site-logo {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#ADB {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
// Dropdown
|
||
|
#menu1 {
|
||
|
.dropdown {
|
||
|
display: none;
|
||
|
}
|
||
|
.menu1-item--level-1 {
|
||
|
position: relative;
|
||
|
|
||
|
}
|
||
|
.dropdown--level-1 {
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 100%;
|
||
|
background: #88C776;
|
||
|
padding: 0 15px 10px;
|
||
|
z-index: 5;
|
||
|
width: 240px;
|
||
|
}
|
||
|
.menu1-item--level-1:hover .dropdown--level-1 {
|
||
|
display: block;
|
||
|
}
|
||
|
.menu1-item--level-2 {
|
||
|
line-height: 1.5;
|
||
|
&:hover{
|
||
|
background-color: #54A951;
|
||
|
}
|
||
|
}
|
||
|
.menu1-link-level-2 {
|
||
|
white-space: nowrap;
|
||
|
background-image: none;
|
||
|
color: #fff;
|
||
|
text-shadow: 0 0 0px #000;
|
||
|
&:hover{
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#menu2 {
|
||
|
.dropdown {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Override the list bullet on sitemap page
|
||
|
.sitemap {
|
||
|
#content ul li li {
|
||
|
list-style: disc;
|
||
|
}
|
||
|
#content ul,
|
||
|
.sitemap-list li {
|
||
|
list-style-type: disc;
|
||
|
}
|
||
|
}
|