summaryrefslogtreecommitdiff
path: root/doc/style.css
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2019-10-03 15:09:33 +0200
committerLars-Dominik Braun <lars@6xq.net>2019-10-03 15:09:33 +0200
commit8048f6351fb4611134c2f6e2d9129ec025376914 (patch)
treee7741d553d21cde03649796127d5778ee35c1732 /doc/style.css
parent13c7f8418e265000e472e284089474d63ccbbb39 (diff)
downloadlulua-8048f6351fb4611134c2f6e2d9129ec025376914.tar.gz
lulua-8048f6351fb4611134c2f6e2d9129ec025376914.tar.bz2
lulua-8048f6351fb4611134c2f6e2d9129ec025376914.zip
doc: Add hand/finger stats to all layouts
Adds a preprocessing step to the doc HTML document.
Diffstat (limited to 'doc/style.css')
-rw-r--r--doc/style.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/style.css b/doc/style.css
index 5aa9a55..0f137c4 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -106,3 +106,38 @@ div.indepth-card {
.lbox {
margin: 0 5vw;
}
+/* for hand/finger stats */
+div.fingerhandstats {
+ text-align: center;
+ display: flex;
+}
+div.fingerhandstats div.fingers {
+ display: flex;
+}
+div.fingerhandstats div.fingers div {
+ margin: 0.1em;
+ overflow: hidden;
+}
+div.fingerhandstats .left {
+ margin-right: 0.5em;
+}
+div.fingerhandstats .right {
+ margin-left: 0.5em;
+}
+/* keep in sync with render-svg.css */
+div.fingerhandstats .fingers .little {
+ border: 0.1em solid #dc322f; /* red */
+}
+div.fingerhandstats .fingers .ring {
+ border: 0.1em solid #268bd2; /* blue */
+}
+div.fingerhandstats .fingers .middle {
+ border: 0.1em solid #d33682; /* magenta */
+}
+div.fingerhandstats .fingers .index {
+ border: 0.1em solid #6c71c4; /* violet */
+}
+div.fingerhandstats .fingers .thumb {
+ border: 0.1em solid #2aa198; /* cyan */
+}
+