summaryrefslogtreecommitdiff
path: root/assets/css/pages/test.css
diff options
context:
space:
mode:
authorsillylaird <sillylaird@fastmail.ca>2026-02-03 21:27:57 -0500
committersillylaird <sillylaird@fastmail.ca>2026-02-03 21:27:57 -0500
commit720d752748b793a2f5cf3cc14cb75ad86e8919c0 (patch)
tree29120103307cb17e7d6c283cc198ec2484f934cd /assets/css/pages/test.css
First commit
Diffstat (limited to 'assets/css/pages/test.css')
-rw-r--r--assets/css/pages/test.css52
1 files changed, 52 insertions, 0 deletions
diff --git a/assets/css/pages/test.css b/assets/css/pages/test.css
new file mode 100644
index 0000000..4eacfa4
--- /dev/null
+++ b/assets/css/pages/test.css
@@ -0,0 +1,52 @@
+html, body { margin: 0; padding: 0; }
+ table.layout { border-collapse: collapse; width: 100%; }
+ td.content { padding: 0; }
+ .logo { float: left; margin-right: 1rem; }
+
+ a {
+ text-decoration: none;
+ background-color: transparent;
+ transition: background-color 0.2s, color 0.2s;
+ padding: 4px;
+ border-radius: 4px;
+ }
+ a:hover { background-color: red; color: white; }
+ a.no-hover-box:hover { background-color: transparent; color: red; }
+
+ .sidebar {
+ position: fixed;
+ top: 0;
+ right: 0;
+ width: 250px;
+ max-height: 100vh;
+ overflow-y: auto;
+ background-color: #ffd;
+ transform: translateX(100%);
+ transition: transform 0.3s ease-in-out;
+ }
+ .sidebar.visible { transform: translateX(0); }
+
+ .links-container {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1.5rem;
+ margin-bottom: 1rem;
+ }
+ .links-container ul {
+ flex: 1 1 200px;
+ list-style: none;
+ margin: 0; padding: 0;
+ }
+ .links-container ul li { margin-bottom: 0.75rem; word-wrap: break-word; }
+ .links-container ul li a {
+ display: inline-block;
+ max-width: 100%;
+ word-wrap: break-word;
+ color: #0366d6;
+ transition: color 0.3s ease;
+ }
+ .links-container ul li a:hover { color: #023e8a; text-decoration: underline; }
+
+ @media (max-width: 600px) {
+ .links-container { flex-direction: column; }
+ }