diff --git a/openday_scavenger/puzzles/fourbyfour/static/styles.css b/openday_scavenger/puzzles/fourbyfour/static/styles.css index 7e62f14..8976ee0 100644 --- a/openday_scavenger/puzzles/fourbyfour/static/styles.css +++ b/openday_scavenger/puzzles/fourbyfour/static/styles.css @@ -1,6 +1,6 @@ .word-item { - background-color: lightgrey; + background-color: #f0f0f0; border-radius: 10px; height: 100px; /* Fixed height for grid items */ @@ -12,7 +12,7 @@ } .category-item { - background-color: lightgrey; + background-color: #203d79; border-radius: 10px; height: 100px; /* Fixed height for grid items */ @@ -25,7 +25,7 @@ /* Center children vertically */ text-align: center; cursor: pointer; - + color: white; } .category-item strong, @@ -36,7 +36,7 @@ } .selected { - background-color: darkgrey; + background-color: #0078c1; color: white; } @@ -53,6 +53,16 @@ max-width: 768px; } + +.btn-custom { + background-color: #35bfc9; + color: white; +} +.btn-custom:hover { + background-color: #2aa3b0; + color: white; +} + @media (max-width: 600px) { .container { max-width: 100%; diff --git a/openday_scavenger/puzzles/fourbyfour/templates/index.html b/openday_scavenger/puzzles/fourbyfour/templates/index.html index ee2527a..dbce0ec 100644 --- a/openday_scavenger/puzzles/fourbyfour/templates/index.html +++ b/openday_scavenger/puzzles/fourbyfour/templates/index.html @@ -25,6 +25,7 @@
Mistakes remaining:
{% for _ in range(status.mistakes_available) %} @@ -88,29 +91,27 @@