From 79d44e676adeb998c3072b4a58d08815b45d4676 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Tue, 17 Dec 2024 19:25:04 +0000 Subject: journal stuff --- static/css/shared/core.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'static/css/shared/core.css') diff --git a/static/css/shared/core.css b/static/css/shared/core.css index ac629b03..c02be71e 100644 --- a/static/css/shared/core.css +++ b/static/css/shared/core.css @@ -99,6 +99,41 @@ a:hover { text-decoration: underline; } +.link-button { + background: rgba(134, 99, 229, 0.2); + padding: 8px 16px; + border-radius: 4px; + color: #8d8dff; + text-decoration: none; + border: 1px solid #8d8dff; + transition: all 0.3s ease; + font-size: 12px; +} + +.link-button:hover { + background: rgba(223, 35, 196, 0.2); + border-color: #df23c4; + color: #df23c4; + text-decoration: none; + transform: translateY(-2px); +} + +.action-button { + padding: 4px 8px; + border-radius: 4px; + color: #8d8dff; + text-decoration: none; + font-size: 11px; + transition: all 0.2s ease; + background: rgba(141, 141, 255, 0.1); +} + +.action-button:hover { + color: #df23c4; + background: rgba(223, 35, 196, 0.1); + text-decoration: none; +} + textarea { resize: none; background: transparent; @@ -143,6 +178,7 @@ img { z-index: 1; width: 1200px; margin: 0 auto; + right: 10px; } #content-wrapper { -- cgit v1.2.3