From c347b6133365dcf1b7da4e77890b20d04d6cfba4 Mon Sep 17 00:00:00 2001 From: Malte Voos Date: Fri, 5 Dec 2025 15:35:38 +0100 Subject: implement machine translation; various fixes and refactorings --- data/style.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 data/style.css (limited to 'data/style.css') diff --git a/data/style.css b/data/style.css new file mode 100644 index 0000000..03dc022 --- /dev/null +++ b/data/style.css @@ -0,0 +1,23 @@ +.cue-view { + font-size: 24px; + background: shade(@theme_bg_color, 0.95); + padding: 12px; + border-radius: 12px; +} + +.cue-view:disabled { + opacity: 0; +} + +.cue-view link { + color: @theme_fg_color; + text-decoration: none; +} + +.cue-view link:hover { + background: shade(@theme_bg_color, 0.8); +} + +.cue-view link:active { + background: shade(@theme_bg_color, 0.6); +} -- cgit 1.4.1