Skip to content

Commit 456e433

Browse files
committed
Lettertype bij knoppen en kleuren verder aangepast
1 parent 85fbbf9 commit 456e433

4 files changed

Lines changed: 12 additions & 14 deletions

File tree

index.html

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,13 +1331,8 @@ <h2 data-translate="settings">Instellingen</h2>
13311331
</section>
13321332
</div>
13331333
</div>
1334-
<button
1335-
class="btn"
1336-
id="closeBtn"
1337-
onclick="closeDialog()"
1338-
data-translate="closeBtn"
1339-
>
1340-
Sluiten
1334+
<button class="btn" id="closeBtn" onclick="closeDialog()">
1335+
<span data-translate="closeBtn">Sluiten</span>
13411336
</button>
13421337
</dialog>
13431338
<style id="styling"></style>

material.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ body[data-theme="pink monochrome"] {
276276
}
277277
}
278278
body[data-theme="red"] {
279-
--primary-light: #ff8a8a;
279+
--primary-light: #fda294;
280280
--primary-dark: #610f11;
281281
--primary-accent: #571a14;
282282
--primary-accent-faded: #5e423fb0;
@@ -312,8 +312,8 @@ body[data-theme="pink monochrome"] {
312312
--primary-background: #241d17;
313313
}
314314
body[data-theme="yellow"] {
315-
--primary-light: #ffd574;
316-
--primary-dark: #614d12;
315+
--primary-light: #f1ca6d;
316+
--primary-dark: #5f4201;
317317
--primary-accent: #462b13;
318318
--primary-accent-faded: #544630b0;
319319
--primary-foreground: #483214;
@@ -403,7 +403,7 @@ body[data-theme="pink monochrome"] {
403403
}
404404
body[data-theme="pink"] {
405405
--primary-light: #ff94b3;
406-
--primary-dark: #730132;
406+
--primary-dark: #71203e;
407407
--primary-accent: #730438;
408408
--primary-accent-faded: #5e3e45b0;
409409
--primary-foreground: #6c1934;

schedule.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if (!schoolName && !accessToken) {
6363
document
6464
.querySelector("#dialog #closeBtn")
6565
.setAttribute("onclick", "resetAfterWelcomeScreen()");
66-
document.querySelector("#dialog #closeBtn").innerHTML = "Volgende";
66+
document.querySelector("#dialog #closeBtn span").innerHTML = "Volgende";
6767
showDialog();
6868
}
6969
setInterval(() => {
@@ -269,7 +269,7 @@ function show(id, title, hideBack) {
269269
document
270270
.querySelector("#dialog #closeBtn")
271271
.setAttribute("onclick", "closeDialog()");
272-
document.querySelector("#dialog #closeBtn").innerHTML = "Sluiten";
272+
document.querySelector("#dialog #closeBtn span").innerHTML = "Sluiten";
273273
}
274274
}
275275
});

style.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,7 @@ section div br:not(:first-of-type) {
558558
#ltr span {
559559
vertical-align: text-top;
560560
font-family: Google Sans Flex, Inter, system-ui;
561+
font-variation-settings: "opsz" 20, "ROND" 100;
561562
}
562563
#ltr svg {
563564
fill: var(--accent-text);
@@ -843,9 +844,11 @@ li {
843844
background-color: var(--primary-accent);
844845
}
845846
#dayBtn span,
846-
#weekBtn span {
847+
#weekBtn span,
848+
#closeBtn span {
847849
font-family: Google Sans Flex, Inter, system-ui;
848850
line-height: 1;
851+
font-variation-settings: "opsz" 20, "ROND" 100;
849852
}
850853
#viewSelect {
851854
display: flex;

0 commit comments

Comments
 (0)