forked from ulovliglogning/ulovliglogning.dk
42 lines
769 B
SCSS
42 lines
769 B
SCSS
body, html {
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: #2A2A2A;
|
|
color: #FFF;
|
|
height: 100%;
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
margin: 1rem;
|
|
color: #AAA;
|
|
}
|
|
|
|
.langSwitcher {
|
|
display: inline-block;
|
|
margin: 2rem 0 0 2rem;
|
|
font-size: 0;
|
|
}
|
|
.langSwitcher a {
|
|
font-size: 1rem;
|
|
color: #FFF;
|
|
display: inline-block;
|
|
background: $color-international-orange;
|
|
padding: 5px;
|
|
box-shadow: none;
|
|
text-transform: capitalize;
|
|
border-right: 1px solid rgba(0,0,0,.4);
|
|
}
|
|
.langSwitcher a.activeLang {
|
|
background: darken($color-international-orange, 15);
|
|
}
|
|
.langSwitcher a:first-child{
|
|
border-radius: 3px 0 0 3px;
|
|
}
|
|
.langSwitcher a:last-child{
|
|
border-radius: 0 3px 3px 0;
|
|
border-right: none;
|
|
} |