2023-03-15 02:20:19 +00:00
|
|
|
.home .logo {
|
|
|
|
max-width: 220px;
|
|
|
|
}
|
|
|
|
|
2023-06-11 01:50:39 +00:00
|
|
|
@media (max-width: 767.98px) {
|
2023-03-15 02:20:19 +00:00
|
|
|
.home .hero h1 {
|
|
|
|
font-size: 3.5em;
|
|
|
|
}
|
|
|
|
.home .hero h2 {
|
|
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
.home .hero h1 {
|
|
|
|
font-size: 5.5em;
|
|
|
|
}
|
|
|
|
.home .hero h2 {
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.home .hero .svg {
|
|
|
|
color: var(--color-green);
|
|
|
|
height: 40px;
|
|
|
|
width: 50px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home .hero.header {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home p.large {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home .stackable {
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home a {
|
|
|
|
color: var(--color-green);
|
|
|
|
}
|
|
|
|
|
2023-04-29 11:35:59 +00:00
|
|
|
.page-footer {
|
|
|
|
display: flex;
|
2023-06-28 15:51:24 +00:00
|
|
|
justify-content: space-between;
|
2023-04-22 05:58:59 +00:00
|
|
|
background-color: var(--color-footer);
|
|
|
|
border-top: 1px solid var(--color-secondary);
|
2023-06-28 15:51:24 +00:00
|
|
|
padding: 8px 20px;
|
2023-04-22 05:58:59 +00:00
|
|
|
}
|
|
|
|
|
2023-04-29 11:35:59 +00:00
|
|
|
.page-footer .left-links {
|
2023-06-28 15:51:24 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 0.25em;
|
2023-04-29 11:35:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer .right-links {
|
2023-04-22 05:58:59 +00:00
|
|
|
min-width: 180px; /* make sure the menu dropdown doesn't overflow horizontally when language name is short */
|
2023-06-28 15:51:24 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-04-22 05:58:59 +00:00
|
|
|
}
|
|
|
|
|
2023-04-29 11:35:59 +00:00
|
|
|
.page-footer .right-links > a {
|
2023-04-22 05:58:59 +00:00
|
|
|
border-left: 1px solid var(--color-secondary-dark-1);
|
|
|
|
padding-left: 8px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
2023-04-29 11:35:59 +00:00
|
|
|
.page-footer .ui.dropdown.language .menu {
|
2023-04-22 05:58:59 +00:00
|
|
|
height: 500px;
|
|
|
|
max-height: calc(100vh - 60px);
|
|
|
|
overflow-y: auto;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2023-03-15 02:20:19 +00:00
|
|
|
@media (max-width: 880px) {
|
2023-04-29 11:35:59 +00:00
|
|
|
.page-footer {
|
2023-06-28 15:51:24 +00:00
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.5em;
|
2023-03-15 02:20:19 +00:00
|
|
|
}
|
|
|
|
}
|