From 7fdaea73c5c67565202e19d6182fc215427919c3 Mon Sep 17 00:00:00 2001 From: memdmp Date: Tue, 19 Aug 2025 20:40:19 +0000 Subject: feat: oidc attempt 1 --- src/app.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/app.css (limited to 'src/app.css') 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]; + } +} -- cgit v1.2.3