summaryrefslogtreecommitdiffstats
path: root/mobile.css
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2021-01-03 18:34:19 -0500
committerBrian Cully <bjc@kublai.com>2021-02-06 10:39:32 -0500
commite92ad9f4b19a0670a80cdd293970c3a08c27a8b4 (patch)
treee8659dcdbf5f7ba3c55a118909d82dd8f0d0bcbd /mobile.css
downloadmolsim-e92ad9f4b19a0670a80cdd293970c3a08c27a8b4.tar.gz
molsim-e92ad9f4b19a0670a80cdd293970c3a08c27a8b4.zip
Initial commit.
Diffstat (limited to 'mobile.css')
-rw-r--r--mobile.css123
1 files changed, 123 insertions, 0 deletions
diff --git a/mobile.css b/mobile.css
new file mode 100644
index 0000000..3d721de
--- /dev/null
+++ b/mobile.css
@@ -0,0 +1,123 @@
+body {
+ display: flex;
+ flex-direction: column;
+ align-items: stretch;
+ margin: 0;
+
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+}
+
+#errors {
+ position: fixed;
+ display: block;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ background-color: #f99;
+ border: 1px solid #922;
+}
+
+#errors p {
+ padding: 1ex 1em;
+ margin: 0;
+}
+
+#errors button {
+ display: block;
+ margin-left: auto;
+ margin-right: 5px;
+ margin-bottom: 5px;
+}
+
+#genome-history {
+ margin: 0;
+ overflow: scroll;
+ align-self: stretch;
+ flex-basis: 50%;
+}
+
+#instructions {
+ padding: 1ex;
+ margin: 0;
+ overflow: scroll;
+ flex-basis: 50%;
+ border-style: solid;
+ border-top-width: 1px;
+ border-left-width: 0;
+ border-right-width: 0;
+ border-bottom-width: 0;
+}
+
+#instructions .step {
+ padding: 5px;
+}
+
+#instructions .step {
+ display: none;
+}
+
+#instructions .step.current {
+ display: list-item;
+}
+
+#print-results.step.current {
+ display: block;
+}
+
+#die {
+ display: block;
+ float: right;
+ padding: 2ex;
+}
+
+#die .value {
+ padding-bottom: 1ex;
+}
+
+#nucleotide-selector {
+ position: relative;
+ white-space: nowrap;
+ padding: 0;
+ word-spacing: -6px; /* TODO: 0 doesn't work. And for some reason whitespace is being renderded between <li> elements? */
+ width: 8em; /* TODO: this shouldn't be hard coded. */
+}
+
+#nucleotide-selector li {
+ display: inline-block;
+ width: 2em;
+ flex-basis: 2em;
+ text-align: center;
+ padding-top: 1ex;
+ padding-bottom: 1ex;
+}
+
+.genome {
+ margin: 0.5ex;
+}
+
+.genome>ol {
+ display: inline-flex;
+ flex-wrap: wrap;
+ padding: 0;
+}
+
+.genome .nucleotide {
+ display: inline-block;
+ height: 32px;
+ width: 32px;
+ font-size: 18px;
+ text-align: center;
+ flex-wrap: wrap;
+ justify-content: space-around;
+ align-items: center;
+}
+
+.genome .nucleotide span {
+ display: inline-block;
+ padding-top: 5px;
+ padding-bottom: 5px;
+}