]> git.cworth.org Git - lmno.games/blobdiff - empathy/empathy.css
Allow word groups and votes to wrap during the judging process.
[lmno.games] / empathy / empathy.css
index ef88072179b4637b77da786fdc1d9e266dfc4a9b..704b54a5ac1759a1be929c4123a3c59cd8f343d4 100644 (file)
@@ -11,6 +11,7 @@
 
 .vote-choices {
     display: flex;
+    flex-wrap: wrap;
 }
 
 .vote-choice {
         color: var(--text-fg-on-accent);
     }
 }
+
+.ambiguity-group {
+    width: 100%;
+    display: flex;
+    flex-wrap: wrap;
+    justify-content: center;
+    align-items: center;
+    background-color: var(--accent-color);
+    margin-bottom: 0.25em;
+    padding: 0;
+    border-radius: 10px;
+}
+
+.ambiguity-button {
+    border-radius: 10px;
+    margin: 0;
+}
+
+.ambiguity-button.selected {
+    background-color: var(--accent-color-bright);
+    color: var(--text-fg-on-accent-bright);
+}