diff options
author | knittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2015-03-29 19:02:24 +0000 |
---|---|---|
committer | knittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2015-03-29 19:02:24 +0000 |
commit | fd7f2fb2bca760f7abd14d837291c343b1f5c944 (patch) | |
tree | e3b4d7e3345fab7510bf3434e60badc483134aeb | |
parent | f8ed35550884e230c22f1adee612ad1b7a6aa722 (diff) | |
download | neo-layout-fd7f2fb2bca760f7abd14d837291c343b1f5c944.tar.gz neo-layout-fd7f2fb2bca760f7abd14d837291c343b1f5c944.tar.bz2 neo-layout-fd7f2fb2bca760f7abd14d837291c343b1f5c944.zip |
Extract stylesheet to css file
git-svn-id: https://svn.neo-layout.org@2463 b9310e46-f624-0410-8ea1-cfbb3a30dc96
-rw-r--r-- | www/tastatur.css | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/www/tastatur.css b/www/tastatur.css new file mode 100644 index 0000000..de054f7 --- /dev/null +++ b/www/tastatur.css @@ -0,0 +1,67 @@ +text.mod, text.key, text.dead { + fill:#111; + fill-opacity:1; + stroke:none; + font-style:normal; + font-variant:normal; + font-weight:normal; + font-stretch:normal; + display:inline; + font-family:DejaVu Sans; + writing-mode:lr-tb; +} + +text.deadcircle, text.dead, text.center, text.key { + text-align:center; + text-anchor:middle; +} + +text.key { + font-size:20px; + font-family:Linux Libertine O,Linux Libertine; +} + +text.dead { font-size:20px; } +text.deadcircle { font-size:16px; } + +text.big { + font-size:14px; +} + +text.mod { + font-size:10px; + text-align:start; + text-anchor:start; +} + +.key { + stroke-width:1.25; +} + +.grey { fill:#949494; stroke:#696969; } +.grey { fill:#9f9f9f; stroke:#747474; } + +/* bootstrap colors */ +.l2, .r2 { fill:#337ab7; } +.l3, .r3 { fill:#5cb85c; } +.l4, .r4 { fill:#d9534f; } +.l5, .r5 { fill:#f0ad4e; } + +/* btn bg hover, unused */ +.l2, .r2 { stroke:#3071a9; } +.l3, .r3 { stroke:#449d44; } +.l4, .r4 { stroke:#c9302c; } +.l5, .r5 { stroke:#ec971f; } + +/* btn border hover */ +.l2, .r2 { stroke:#204d74; } +.l3, .r3 { stroke:#398439; } +.l4, .r4 { stroke:#ac2925; } +.l5, .r5 { stroke:#d58512; } + +text.nubkey { fill:#eee; } + +.pressed { + opacity:0.5; + fill:#555; +} |