summary refs log tree commit diff
path: root/data/style.css
diff options
context:
space:
mode:
authorMalte Voos <git@mal.tc>2025-12-05 15:35:38 +0100
committerMalte Voos <git@mal.tc>2025-12-05 15:43:58 +0100
commitc347b6133365dcf1b7da4e77890b20d04d6cfba4 (patch)
treec83aac6f7d1e6edc57e607f01e5d3eeee8da4a0e /data/style.css
parent652b1c2a0ce7db4885ebc51f7f09133a43401442 (diff)
downloadlleap-c347b6133365dcf1b7da4e77890b20d04d6cfba4.tar.gz
lleap-c347b6133365dcf1b7da4e77890b20d04d6cfba4.zip
implement machine translation; various fixes and refactorings HEAD main
Diffstat (limited to 'data/style.css')
-rw-r--r--data/style.css23
1 files changed, 23 insertions, 0 deletions
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);
+}