100 lines
1.9 KiB
CSS
100 lines
1.9 KiB
CSS
body {
|
|
font-family: 'noto_sanscondensed', sans-serif;
|
|
/* line-height: 1em!important; */
|
|
}
|
|
|
|
.bg-green {
|
|
background-color: #517C39;
|
|
}
|
|
|
|
.bg-green-dark {
|
|
background-color: #335012;
|
|
}
|
|
|
|
.bg-green-light {
|
|
background-color: #F1F7EE;
|
|
}
|
|
|
|
.green {
|
|
color: #517C39;
|
|
}
|
|
|
|
.green-dark {
|
|
color: #335012;
|
|
}
|
|
|
|
a.green-dark:hover {
|
|
color: #335012;
|
|
font-weight: 900;
|
|
text-decoration: none;
|
|
text-shadow: 4px black;
|
|
}
|
|
|
|
.green-light {
|
|
color: #F1F7EE;
|
|
}
|
|
|
|
.bg-yellow {
|
|
background-color: #F2B90F;
|
|
}
|
|
|
|
.bg-light {
|
|
background-color: #F5F5F5;
|
|
}
|
|
|
|
.yellow {
|
|
color: #F2B90F;
|
|
}
|
|
|
|
.light {
|
|
color: #F5F5F5;
|
|
}
|
|
|
|
.megamenu {
|
|
position: static
|
|
}
|
|
|
|
.megamenu .dropdown-menu {
|
|
background: none;
|
|
border: none;
|
|
width: 100%
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'noto_sanscondensed';
|
|
src: url('/fonts/notosans-condensed/notosans-condensed-webfont.eot');
|
|
src: url('/fonts/notosans-condensed/notosans-condensed-webfont.eot?#iefix') format('embedded-opentype'),
|
|
url('/fonts/notosans-condensed/notosans-condensed-webfont.woff2') format('woff2'),
|
|
url('/fonts/notosans-condensed/notosans-condensed-webfont.woff') format('woff'),
|
|
url('/fonts/notosans-condensed/notosans-condensed-webfont.ttf') format('truetype'),
|
|
url('/fonts/notosans-condensed/notosans-condensed-webfont.svg#noto_sanscondensed') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@media (min-width: 992px){
|
|
.dropdown-menu .dropdown-toggle:after{
|
|
border-top: .3em solid transparent;
|
|
border-right: 0;
|
|
border-bottom: .3em solid transparent;
|
|
border-left: .3em solid;
|
|
}
|
|
.dropdown-menu .dropdown-menu{
|
|
margin-left:0; margin-right: 0;
|
|
}
|
|
.dropdown-menu li{
|
|
position: relative;
|
|
}
|
|
.nav-item .submenu{
|
|
display: none;
|
|
position: absolute;
|
|
left:100%; top:-7px;
|
|
}
|
|
.nav-item .submenu-left{
|
|
right:100%; left:auto;
|
|
}
|
|
.dropdown-menu > li:hover{ background-color: #f1f1f1 }
|
|
.dropdown-menu > li:hover > .submenu{
|
|
display: block;
|
|
}
|
|
} |