summaryrefslogtreecommitdiffstats
path: root/print.css
diff options
context:
space:
mode:
Diffstat (limited to 'print.css')
-rw-r--r--print.css22
1 files changed, 18 insertions, 4 deletions
diff --git a/print.css b/print.css
index cbbfff0..bbbec05 100644
--- a/print.css
+++ b/print.css
@@ -1,4 +1,9 @@
+* {
+ box-sizing: border-box;
+}
+
body {
+ display: flex;
background-color: white;
}
@@ -18,10 +23,19 @@ body {
display: none;
}
-#genome-history {
- top: 0;
- left: 0;
- width: 100%;
+.genome>ol {
+ display: inline-flex;
+ flex-wrap: wrap;
+ padding: 0;
+ margin: 1ex;
+}
+
+.genome .nucleotide {
+ display: inline-flex;
+ height: 3ex;
+ width: 2em;
+ justify-content: space-around;
+ align-items: center;
}
.genome .nucleotide.selected {