overall refactoring

This commit is contained in:
Klemek
2025-03-13 17:12:58 +01:00
parent 8e01f4f274
commit a53cc0ad08
13 changed files with 4097 additions and 30 deletions
+39
View File
@@ -85,6 +85,7 @@ CUSTOM STYLE
:root {
/* https://materialui.co/colors/ */
/* TODO: 2. change hue and saturation */
--hue-primary: 65.52;
--sat-primary: 20%;
--background: hsl(var(--hue-primary), var(--sat-primary), 96.08%);
@@ -169,3 +170,41 @@ a {
font-size: inherit;
}
}
/*
=================================================
APP STYLE
=================================================
*/
.button {
display: block;
width: 100%;
text-decoration: none;
padding: 1em;
margin-bottom: 0.75em;
border: 1px solid var(--color-primary);
border-radius: 0.5em;
background-color: var(--background);
cursor: pointer;
font-size: 1.333em;
}
.button:hover {
background-color: var(--background-secondary);
}
svg.lucide {
display: inline-block;
vertical-align: text-top;
}
b .lucide,
h1 .lucide,
h2 .lucide,
h3 .lucide,
h4 .lucide,
h5 .lucide,
h6 .lucide {
stroke-width: 3;
}