diff --git a/components/GameBoard.vue b/components/GameBoard.vue index 4e3a816..86d22fa 100644 --- a/components/GameBoard.vue +++ b/components/GameBoard.vue @@ -127,11 +127,12 @@ function showWinnerScreen() { #player_list { min-height: 90%; - background: burlywood; - border: 5px solid darkgoldenrod; + background: rgba(0, 0, 0, 0.35); + border: 5px solid #000; border-radius: 10px; filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60)); margin: 10px; + backdrop-filter: hue-rotate(73deg) blur(10px) contrast(90%) brightness(165%); } diff --git a/components/MarketCards.vue b/components/MarketCards.vue index 8eba7a5..e846351 100644 --- a/components/MarketCards.vue +++ b/components/MarketCards.vue @@ -65,11 +65,10 @@ const buyableFiregem = computed(() => goStore?.current_game?.gem_stack.at(-1)) margin: 10px; padding-left: 10px; padding-right: 10px; + padding-bottom: 10px; border-radius: 10px; - background: brown; - border: 5px solid darkred; filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60)); - + backdrop-filter: hue-rotate(625deg) blur(5px) brightness(80%); } .separator { diff --git a/components/PlayerListElement.vue b/components/PlayerListElement.vue index 2761db3..e714739 100644 --- a/components/PlayerListElement.vue +++ b/components/PlayerListElement.vue @@ -118,7 +118,7 @@ const props = defineProps() grid-template-columns: min-content 1fr; grid-template-areas: "button player"; - border: 5px solid brown; + border: 5px solid black; min-height: 200px; position: relative; } diff --git a/components/PlayerSlot.vue b/components/PlayerSlot.vue index 58cb2b6..065c59a 100644 --- a/components/PlayerSlot.vue +++ b/components/PlayerSlot.vue @@ -144,9 +144,8 @@ function check_for_guard(player: Player) {