1
0
Fork 0

Improvements

This commit is contained in:
Airikr 2024-11-18 18:00:23 +01:00
parent 955a31ca29
commit ce6fa669cd
2 changed files with 16 additions and 20 deletions

View file

@ -2,9 +2,6 @@
"require": {
"erusev/parsedown": "^1.7",
"particle/validator": "^2.3",
"matthiasmullie/minify": "^1.3",
"pragmarx/google2fa": "^8.0",
"paragonie/halite": "^5",
"phpmailer/phpmailer": "^6.8"
"matthiasmullie/minify": "^1.3"
}
}

View file

@ -20,11 +20,13 @@
/* Variables for the universal theme */
:root {
--body: #1b1c27;
--main: #1a1b26;
--text: #c0caf5;
--line: #414868;
--highlight: #171721;
--image: #444663;
--header: #171721;
--field_bg: #1f1f2c;
--field_bg_hover: #2c2c3e;
@ -35,12 +37,6 @@
--field_text: #c0caf5;
--field_text_inactive: #777e98;
--summary_open: #171721;
--summary_closed: #171721;
--calendar_day: #414868;
--calendar_day_highlight: #ff9e64;
--calendar_day_today: #7aa2f7;
--transparent_30: rgba(26, 27, 38, .7);
--transparent_20: rgba(26, 27, 38, .8);
--transparent_10: rgba(26, 27, 38, .9);
@ -48,16 +44,19 @@
--red: #f7768e;
--green: #9ece6a;
--blue: #7aa2f7;
--blue_faded: #394c73;
--purple: #bb9af7;
--purple_faded: #52446d;
--orange: #ff9e64;
--yellow: #e0af68;
--dark: #414868;
--white: #ffffff;
--grey: #858daa;
--icon_select: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-selector" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.5" stroke="rgba(255,255,255,1)" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M8 9l4 -4l4 4"></path><path d="M16 15l-4 4l-4 -4"></path></svg>');
--font: 'Inter Tight', monospace;
--font_mono: 'Inter Tight', monospace;
--font: 'Inter Tight', sans-serif;
--font_mono: 'Inter Tight', sans-serif;
--fontsize: 1rem;
--lineheight: 1.75rem;
}
@ -69,8 +68,12 @@
scroll-behavior: smooth;
}
html {
overflow-y: scroll;
}
html, body {
background-color: var(--main);
background-color: var(--body);
color: var(--text);
font-family: var(--font);
font-size: var(--fontsize);
@ -361,12 +364,8 @@ svg[class*="icon-tabler-currency"] {
#website {
margin: 50px 80px;
max-width: 1250px;
}
#website > main {
width: 1000px;
margin: 50px auto;
max-width: 800px;
}