summaryrefslogtreecommitdiffstats
path: root/print.css
diff options
context:
space:
mode:
Diffstat (limited to 'print.css')
-rw-r--r--print.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/print.css b/print.css
new file mode 100644
index 0000000..bbbec05
--- /dev/null
+++ b/print.css
@@ -0,0 +1,43 @@
+* {
+ box-sizing: border-box;
+}
+
+body {
+ display: flex;
+ background-color: white;
+}
+
+#instructions {
+ display: none;
+}
+
+#die {
+ display: none;
+}
+
+#errors {
+ display: none;
+}
+
+#nucleotide-selector {
+ display: none;
+}
+
+.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 {
+ border: 2px solid black;
+}