summaryrefslogtreecommitdiffstats
path: root/print.css
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2021-02-19 20:35:48 -0500
committerBrian Cully <bjc@kublai.com>2021-02-19 20:35:48 -0500
commitc9426f12d4a341ed7576e02c88cde5e7a896c7f0 (patch)
treebf1d2deee1e17435a6bd5f70ea3f37fa65b4b555 /print.css
parentfc6ceb53c571ecc86148e54752f45acf6166df23 (diff)
downloadmolsim2-c9426f12d4a341ed7576e02c88cde5e7a896c7f0.tar.gz
molsim2-c9426f12d4a341ed7576e02c88cde5e7a896c7f0.zip
Fix up some stylesheets.
Print stylesheet is fairly visible now.
Diffstat (limited to 'print.css')
-rw-r--r--print.css39
1 files changed, 36 insertions, 3 deletions
diff --git a/print.css b/print.css
index bbbec05..3739ec6 100644
--- a/print.css
+++ b/print.css
@@ -23,11 +23,44 @@ body {
display: none;
}
-.genome>ol {
+#genome-list {
+ width: 100%;
+}
+
+#genome-list .initial,
+#genome-list .history,
+#genome-list .final {
+ padding-left: 2.5em;
+}
+
+#genome-list .initial {
+ border-bottom: 1px dashed black;
+}
+
+#genome-list .final {
+ border-top: 1px dashed black;
+}
+
+.genome {
display: inline-flex;
flex-wrap: wrap;
- padding: 0;
- margin: 1ex;
+}
+
+.genome .codon {
+ display: inline-block;
+ margin: 0.5ex;
+ border: 1px solid black;
+}
+
+.genome .codon>ol {
+ padding: 1ex 0.5em;
+}
+
+.genome .codon .amino-acid {
+ border-top: 1px solid black;
+ text-align: center;
+ padding-top: 0.5ex;
+ padding-bottom: 0.5ex;
}
.genome .nucleotide {