Compare commits

...

3 Commits

Author SHA1 Message Date
Tomáš Mládek 33f706c193 style: change scrolling
ci/woodpecker/push/woodpecker Pipeline was successful Details
2024-03-07 16:40:05 +01:00
Tomáš Mládek 07b98fc0e3 style: change test layout 2024-03-07 16:38:29 +01:00
Tomáš Mládek f691495aa2 style: use Atkinson Hyperlegible for all non-card text 2024-03-07 16:32:18 +01:00
6 changed files with 38 additions and 23 deletions

View File

@ -36,6 +36,7 @@
},
"type": "module",
"dependencies": {
"@fontsource/atkinson-hyperlegible": "^5.0.19",
"@fontsource/b612": "^5.0.8",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.1",

View File

@ -5,6 +5,9 @@ settings:
excludeLinksFromLockfile: false
dependencies:
'@fontsource/atkinson-hyperlegible':
specifier: ^5.0.19
version: 5.0.19
'@fontsource/b612':
specifier: ^5.0.8
version: 5.0.8
@ -390,6 +393,10 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
/@fontsource/atkinson-hyperlegible@5.0.19:
resolution: {integrity: sha512-dnhQiFATy7n12Nq1fq8yhuzbae4WJSFKaKesJLTNKyiz6w+DI7RbcB3D1hwU+tBax4Dxlhg0tkY1LS4AzRRqxw==}
dev: false
/@fontsource/b612@5.0.8:
resolution: {integrity: sha512-PuOfVZB37asTrwI6GD5dcOjIuEZI+m9PW6/9MM05zRxA5pSUyPn280rLP7r7mOiFmEKSEWCFyI0Yf2XJOmqwNA==}
dev: false

View File

@ -8,8 +8,8 @@ body, html {
color: white;
background-color: black;
font-family: 'B612', 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
font-size: min(1.5vw, 1.5vh);
font-family: 'Atkinson Hyperlegible', 'B612', 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
font-size: 20px;
}
* {

View File

@ -78,6 +78,9 @@
width: 100vw;
height: 100vh;
overflow: hidden;
font-family: 'B612', 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
font-size: min(4vw, 4vh);
}
.inner {

View File

@ -201,17 +201,15 @@
{#if tests.filter((test) => test.categories.includes(category.id)).length > 0}
<h2>{$i18n.t(category.label)}</h2>
{#each filteredTests.filter((test) => test.categories.includes(category.id) && filteredCategories.every( (f) => test.categories.includes(f) )) as test}
<div class="test" class:disabled={test.disabled}>
<a class="test" href={test.id}>
<span class="label">
<i class="ti {test.icon}"></i>
{$i18n.t(test.label)}
</span>
<span class="description">
{$i18n.t(`tests.${test.id}.description`)}
</span>
</a>
</div>
<a class="test" href={test.id} class:disabled={test.disabled}>
<i class="ti {test.icon}"></i>
<div class="label">
{$i18n.t(test.label)}
</div>
<div class="description">
{$i18n.t(`tests.${test.id}.description`)}
</div>
</a>
{/each}
{/if}
{:else}
@ -230,7 +228,7 @@
gap: 1rem;
flex-grow: 1;
padding: 0 4rem;
overflow: auto;
overflow: hidden;
& input[type='search'] {
padding: 0.5em;
@ -238,6 +236,10 @@
}
}
.tests {
overflow-y: auto;
}
h1 {
text-align: center;
font-size: 3rem;
@ -246,7 +248,6 @@
}
h2 {
font-weight: normal;
margin: 0.25em 0;
}
@ -293,21 +294,22 @@
}
.test {
display: flex;
gap: 0.5em;
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
gap: 0 0.25em;
margin-bottom: 0.25em;
text-decoration: none;
color: inherit;
& .label {
white-space: nowrap;
}
& .description {
opacity: 0.85;
}
& a {
text-decoration: none;
color: inherit;
opacity: 0.8;
grid-column-start: 2;
}
&.disabled {

View File

@ -1,5 +1,7 @@
<script lang="ts">
import 'normalize.css/normalize.css';
import '@fontsource/atkinson-hyperlegible';
import '@fontsource/atkinson-hyperlegible/700.css';
import '@fontsource/b612';
import '@fontsource/b612/700.css';
import '@tabler/icons-webfont/tabler-icons.css';