💄 Change some sizes and colors

This commit is contained in:
2022-04-30 17:25:35 +02:00
parent 3f0fb43232
commit 63d335d04a
4 changed files with 11 additions and 10 deletions

View File

@ -1,10 +1,10 @@
:root { :root {
--bg-color: #424242; --bg-color: #353535;
--text-color: #bdbdbd; --text-color: #bdbdbd;
--font-family: Arial, Helvetica, sans-serif; --font-family: "sourcesanspro";
--titlebar-color: #212121; --titlebar-color: #212121;
--bottomnav-color: #757575; --bottomnav-color: #555555;
--bottomnav-icon-color: #dedede; --bottomnav-icon-color: #c7c7c7;
--bottomnav-icon-active-color: #456c47; --bottomnav-icon-active-color: #456c47;
--bottomnav-active-color: #7ca74b; --bottomnav-active-color: #7ca74b;
} }

View File

@ -64,7 +64,7 @@ import { RouterLink } from "vue-router";
} }
.entry * { .entry * {
color: var(--icon-color); color: var(--bottomnav-icon-color);
} }
a { a {

View File

@ -70,9 +70,9 @@ function getText(substitution) {
min-height: 35px; min-height: 35px;
border-radius: 11px; border-radius: 11px;
margin: 10px 0px; margin: 10px 0px;
padding: 10px; padding: 10px 15px;
grid-template-columns: max-content auto; grid-template-columns: max-content auto;
gap: 10px; gap: 15px;
} }
.hour { .hour {
@ -91,11 +91,11 @@ function getText(substitution) {
font-size: 18px; font-size: 18px;
display: flex; display: flex;
align-items: center; align-items: center;
font-weight: 100;
word-wrap: break-word; word-wrap: break-word;
} }
.notes { .notes {
font-size: 13px; font-size: 13px;
font-weight: 100;
} }
</style> </style>

View File

@ -33,6 +33,7 @@ const timetableDay = ref(0);
.title { .title {
font-size: 18px; font-size: 18px;
text-align: center;
} }
.lesson { .lesson {
@ -41,9 +42,9 @@ const timetableDay = ref(0);
height: 60px; height: 60px;
border-radius: 11px; border-radius: 11px;
margin: 10px 0px; margin: 10px 0px;
padding: 10px; padding: 10px 15px;
grid-template-columns: max-content max-content; grid-template-columns: max-content max-content;
gap: 10px; gap: 15px;
} }
.hour { .hour {