You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

176 lines
4.1 KiB
SCSS

2 years ago
header {
font-family: 'Inter Subset', var(--sans-serif-font);
width: 100%;
.main {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
gap: 12px;
font-size: 1.5rem;
margin-bottom: 10px;
}
2 years ago
}
.page-header {
font-size: 3em;
line-height: 100%;
font-family: var(--header-font);
margin: 4rem 0px 1rem 0px;
2 years ago
}
.navbar {
max-width: var(--max-layout-width);
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 1em 0;
margin: 0 auto;
2 years ago
}
.nav-navs {
display: flex;
flex-wrap: wrap;
ul {
display: flex;
align-items: center;
gap: 1px;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
}
2 years ago
}
.nav-links {
font-size: 1em;
font-weight: 340;
text-decoration: none;
justify-content: right;
color: var(--text-color);
padding: 0.66rem;
line-height: 2.5;
2 years ago
}
.home-title {
font-size: 1.7em;
font-weight: 450;
padding: 0.12rem;
margin-left: -0.12rem;
border: none;
color: var(--primary-color);
text-decoration: none;
2 years ago
}
.meta {
color: var(--meta-color);
letter-spacing: -0.4px;
font-size: 0.8rem;
font-weight: 300;
padding: 0;
padding-top: 0.7vmin;
padding-bottom: 3vmin;
line-height: 1.4rem;
a {
color: var(--meta-color);
text-decoration-color: none;
font-weight: inherit;
text-decoration: none;
}
ul,
li {
font-family: var(--sans-serif-font);
list-style-type: none;
display: inline;
}
}
.card-meta {
color: var(--meta-color);
font-size: 0.92rem;
2 years ago
}
.language-switcher {
margin-left: 1rem;
margin-right: 1rem;
display: flex;
align-items: center;
justify-content: center;
}
.language-switcher-icon {
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 96 960 960'><path d='M480 976q-84 0-157-31.5T196 859q-54-54-85-127.5T80 574q0-84 31-156.5T196 291q54-54 127-84.5T480 176q84 0 157 30.5T764 291q54 54 85 126.5T880 574q0 84-31 157.5T764 859q-54 54-127 85.5T480 976Zm0-58q35-36 58.5-82.5T577 725H384q14 60 37.5 108t58.5 85Zm-85-12q-25-38-43-82t-30-99H172q38 71 88 111.5T395 906Zm171-1q72-23 129.5-69T788 725H639q-13 54-30.5 98T566 905ZM152 665h159q-3-27-3.5-48.5T307 574q0-25 1-44.5t4-43.5H152q-7 24-9.5 43t-2.5 45q0 26 2.5 46.5T152 665Zm221 0h215q4-31 5-50.5t1-40.5q0-20-1-38.5t-5-49.5H373q-4 31-5 49.5t-1 38.5q0 21 1 40.5t5 50.5Zm275 0h160q7-24 9.5-44.5T820 574q0-26-2.5-45t-9.5-43H649q3 35 4 53.5t1 34.5q0 22-1.5 41.5T648 665Zm-10-239h150q-33-69-90.5-115T565 246q25 37 42.5 80T638 426Zm-254 0h194q-11-53-37-102.5T480 236q-32 27-54 71t-42 119Zm-212 0h151q11-54 28-96.5t43-82.5q-75 19-131 64t-91 115Z'/%3E%3C/svg%3E%0A");
background: var(--text-color);
align-self: center;
width: 1.2rem;
height: 1.2rem;
position: relative;
cursor: pointer;
}
.dropdown {
display: inline-block;
position: relative;
z-index: 99;
font-size: 0.8rem;
}
.dropdown-content {
display: none;
position: absolute;
padding-left: 0.5rem;
padding-right: 0.5rem;
z-index: 99;
left: 50%;
transform: translateX(-50%);
text-align: center;
background: var(--background-color);
a {
display: block;
}
}
.dropdown:hover .dropdown-content {
display: block;
}
2 years ago
@media only screen and (max-width: 1000px) {
.navbar {
max-width: var(--normal-layout-width);
}
2 years ago
.nav-navs {
display: flex;
justify-content: flex-end;
}
2 years ago
}
@media only screen and (max-width: 600px) {
.nav-navs {
margin-top: 0.8rem;
width: 100%;
justify-content: center;
flex-wrap: wrap;
}
2 years ago
.navbar {
flex-direction: column;
align-items: center;
justify-content: center;
}
2 years ago
}
@media only screen and (max-width: 300px) {
.navbar {
max-width: var(--small-layout-width);
}
2 years ago
}