header.css (648B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
.header {
display: flex;
flex-direction: column;
position: relative;
@media print {
display: none;
}
& .logo {
justify-content: space-between;
align-items: center;
display: flex;
color: var(--bg-base);
flex: 1;
background: repeating-linear-gradient(
90deg,
var(--accent),
var(--accent) 2px,
transparent 2px,
transparent 10px
);
& a {
background: var(--accent);
max-width: 100%;
padding: 5px 10px;
text-decoration: none;
}
}
}
|