aboutsummaryrefslogtreecommitdiff
path: root/utils/minesweeper/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'utils/minesweeper/style.css')
-rw-r--r--utils/minesweeper/style.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/minesweeper/style.css b/utils/minesweeper/style.css
index b9c6c1c..7d2a0b1 100644
--- a/utils/minesweeper/style.css
+++ b/utils/minesweeper/style.css
@@ -44,6 +44,10 @@ table button.visited {
border-width: 1px;
}
+table button.flagged {
+ background: url("flag.svg");
+}
+
button {
font-weight: bold;
}
@@ -91,3 +95,25 @@ input {
padding: 5px 10px;
margin: 0 !important;
}
+
+#flash-message {
+ padding: 10px;
+ border: solid;
+ border-width: 2px;
+ border-radius: 7px;
+ margin: auto;
+ width: 50%;
+ margin-bottom: 30px;
+ text-align: center;
+}
+
+#flash-message.flash-won {
+ background: #2e7d32;
+ border-color: #1b5e20;
+}
+
+#flash-message.flash-lost {
+ background: #c62828;
+ border-color: #b71c1c;
+}
+