aboutsummaryrefslogtreecommitdiffstats
path: root/src/app.css
diff options
context:
space:
mode:
authorLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-19 20:40:19 +0000
committerLibravatarLarge Libravatar memdmp <memdmpestrogenzone>2025-08-19 20:40:19 +0000
commit7fdaea73c5c67565202e19d6182fc215427919c3 (patch)
treec69e266fe672cba5f8bffd5f53e93b0efab65e9c /src/app.css
downloadcrunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.gz
crunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.bz2
crunched-7fdaea73c5c67565202e19d6182fc215427919c3.tar.lz
crunched-7fdaea73c5c67565202e19d6182fc215427919c3.zip

feat: oidc attempt 1

Diffstat (limited to 'src/app.css')
-rw-r--r--src/app.css31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/app.css b/src/app.css
new file mode 100644
index 0000000..a451f07
--- /dev/null
+++ b/src/app.css
@@ -0,0 +1,31 @@
+@import 'tailwindcss';
+
+@layer base {
+ @import './cs16.css';
+
+ html {
+ font-size: 21px;
+ }
+
+ body {
+ padding: 40px;
+ max-width: 800px;
+ margin: auto;
+ margin: 0 max(0px, round(50vw - (800px/2), 1px));
+ }
+
+ ::selection {
+ background-color: #958831;
+ color: white;
+ }
+
+ @media (max-width: 400px) {
+ body {
+ padding: 20px;
+ }
+ }
+
+ a:not(.default) {
+ @apply hover:underline text-[#baab44];
+ }
+}