]> git.cworth.org Git - lmno.games/blobdiff - empathy/empathy.css
Fix to use server-sent state for whether player has answered/judged
[lmno.games] / empathy / empathy.css
index e8a317ea5c3dc70e403f8490c1e86c622792152e..7e9bf3015a22e8778da33ea56991c37127172e98 100644 (file)
@@ -1 +1,53 @@
-/* Nothing to see here yet. */
+.vote-button {
+    width: 100%;
+    background-color: var(--accent-color);
+    color: var(--text-fg-on-accent);
+    text-align: left;
+    border-radius: 25px;
+    font-size: 200%;
+    padding: 1em;
+    margin-bottom: 0.25em;
+}
+
+.vote-choices {
+    display: flex;
+}
+
+.vote-choice {
+    font-size: 40%;
+    background-color: var(--accent-color-bright);
+    color: var(--text-fg-on-accent-bright);
+    border-radius: 4px;
+    padding-left: 4px;
+    padding-right: 4px;
+    margin-right: 0.5em;
+}
+
+@media (hover:hover) {
+    button:hover .vote-choice {
+        background-color: var(--accent-color);
+        color: var(--text-fg-on-accent);
+    }
+}
+
+.ambiguity-group {
+    width: 100%;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    background-color: var(--accent-color);
+    margin-bottom: 0.25em;
+    padding: 0;
+    border-radius: 10px;
+}
+
+.ambiguity-button {
+    width: 100%;
+    border-radius: 10px;
+    margin: 0;
+}
+
+.ambiguity-button.selected {
+    background-color: var(--accent-color-bright);
+    color: var(--text-fg-on-accent-bright);
+}