2024-03-10 04:31:33 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "Firava";
|
|
|
|
src: url(/fonts/Firava.woff2) format("woff2");
|
|
|
|
font-display: swap;
|
|
|
|
font-weight: 100 900;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Firava";
|
|
|
|
src: url(/fonts/FiravaItalic.woff2) format("woff2");
|
|
|
|
font-display: swap;
|
|
|
|
font-weight: 100 900;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.link-button {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 13px;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 2px 2em 0;
|
2024-03-10 05:04:03 +00:00
|
|
|
margin: 0.5em 0;
|
2024-03-10 04:31:33 +00:00
|
|
|
height: 32px;
|
|
|
|
line-height: 30px;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: 550;
|
2024-03-23 04:41:29 +00:00
|
|
|
color: var(--button-text-color);
|
|
|
|
background: var(--button-color);
|
2024-03-10 04:31:33 +00:00
|
|
|
}
|
|
|
|
a.link-button:hover {
|
2024-03-23 04:41:29 +00:00
|
|
|
background: var(--button-hover-color);
|
2024-03-10 04:31:33 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.install-button {
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 0.5em 1.5em;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 7px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 32px;
|
|
|
|
font-weight: 600;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-03-10 05:04:03 +00:00
|
|
|
line-height: 1.2;
|
2024-03-10 04:31:33 +00:00
|
|
|
}
|
|
|
|
h3 {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
h4 {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
time {
|
|
|
|
font-size: smaller;
|
|
|
|
}
|
|
|
|
article h2 {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 0.5em 0;
|
|
|
|
}
|
|
|
|
|
2024-03-23 04:41:29 +00:00
|
|
|
footer {
|
|
|
|
background-color: var(--footer-background-color);
|
|
|
|
color: var(--footer-text-color);
|
|
|
|
}
|
|
|
|
footer a,
|
|
|
|
footer a:hover {
|
|
|
|
color: var(--footer-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content.text {
|
|
|
|
color: var(--content-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content.text h2,
|
|
|
|
.content.text .heading-text {
|
|
|
|
color: var(--content-heading-text-color);
|
|
|
|
}
|
|
|
|
|
2024-03-10 04:31:33 +00:00
|
|
|
.logo {
|
|
|
|
font-family: var(--header-font-family), sans-serif;
|
|
|
|
font-weight: 900;
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.nav-item {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.content code {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.hero section {
|
|
|
|
padding: 0 5rem;
|
|
|
|
}
|
2024-04-14 02:31:36 +00:00
|
|
|
.version-number {
|
|
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
}
|
2024-03-10 04:31:33 +00:00
|
|
|
@media screen and (max-width: 950px) {
|
|
|
|
.hero {
|
|
|
|
flex-direction: column;
|
2024-03-10 05:04:03 +00:00
|
|
|
padding-top: 100px;
|
2024-03-10 04:31:33 +00:00
|
|
|
}
|
|
|
|
.hero section {
|
|
|
|
padding: 0 2rem;
|
|
|
|
}
|
2024-03-11 03:48:36 +00:00
|
|
|
.explore-more {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-03-10 04:31:33 +00:00
|
|
|
}
|
|
|
|
@media screen and (max-width: 450px) {
|
|
|
|
.hero-image {
|
|
|
|
width: 222px;
|
|
|
|
}
|
|
|
|
}
|