mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-19 04:20:10 +01:00
162 lines
2.2 KiB
SCSS
162 lines
2.2 KiB
SCSS
// To clear things when we float the element inside nav and ul
|
|
.clear {
|
|
*zoom: 1;
|
|
|
|
&:after {
|
|
clear: both;
|
|
}
|
|
|
|
&:before,
|
|
&:after {
|
|
content: " ";
|
|
display: table;
|
|
}
|
|
}
|
|
|
|
.site-header {
|
|
padding: 2% 2% 1% 2%;
|
|
background: var(--background);
|
|
display: inline-block;
|
|
float: left;
|
|
width: 100%;
|
|
|
|
.separator {
|
|
user-select: none;
|
|
opacity: 0;
|
|
|
|
&:first-child {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: var(--header-link);
|
|
}
|
|
|
|
.avatar {
|
|
height: 3em;
|
|
width: 3em;
|
|
float: left;
|
|
margin-top: -13px;
|
|
border-radius: 0.2em;
|
|
margin-right: 0.5em;
|
|
padding: 10px 10px;
|
|
|
|
}
|
|
|
|
.site-title {
|
|
float: left;
|
|
font-weight: bold;
|
|
font-family: $font-family-logo;
|
|
font-size: 1.3em;
|
|
}
|
|
}
|
|
|
|
nav {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
line-height: 1.5;
|
|
float: right;
|
|
text-align: right;
|
|
display: block;
|
|
}
|
|
|
|
li {
|
|
display: inline;
|
|
float: left;
|
|
margin-right: 0.4em;
|
|
}
|
|
|
|
a {
|
|
&:hover {
|
|
color: var(--link);
|
|
}
|
|
|
|
&#pull {
|
|
i {
|
|
margin-top: 13px;
|
|
margin-right: 10px;
|
|
float: right;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
nav img.spacestatus {
|
|
border-radius: 15px 5px 5px 15px;
|
|
padding: 0;
|
|
margin-left: 10px;
|
|
height: 30px;
|
|
}
|
|
|
|
/* ---- Responsive ---- */
|
|
|
|
@media (min-width: $break) {
|
|
a#pull {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $break) {
|
|
.site-header {
|
|
img.avatar {
|
|
margin-top: -7px
|
|
}
|
|
|
|
.site-title {
|
|
margin-top: 7px;
|
|
}
|
|
}
|
|
|
|
nav {
|
|
height: auto;
|
|
|
|
.separator {
|
|
display: none !important;
|
|
}
|
|
|
|
ul {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
|
|
/* fade out, then shrink */
|
|
transition: opacity .25s 0s, font-size .25s 0s;
|
|
transition-delay: 0s;
|
|
|
|
&.hide {
|
|
font-size: 0;
|
|
margin: 0;
|
|
opacity: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
li {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 1em;
|
|
position: relative;
|
|
background-color: var(--background);
|
|
backdrop-filter: brightness(0.98);
|
|
|
|
&:nth-of-type(4n) {
|
|
background-color: var(--background);
|
|
}
|
|
|
|
a {
|
|
width: 100%;
|
|
margin: 0;
|
|
display: block;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|