summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-01-01 00:32:40 +0100
committerTor Andersson <tor@ccxvii.net>2022-01-01 00:32:40 +0100
commit058c6a95ca1416970bca5cf2cfe07a4f17e5c2a4 (patch)
tree6d8095b4fb0d3270ba0e2c8c5cf429e989dda5c9
parent1f060bf2ef8b3d475b0d37d32bab73e1a601ea11 (diff)
downloadserver-058c6a95ca1416970bca5cf2cfe07a4f17e5c2a4.tar.gz
Don't hardwire card drop shadow and behavior in grid.css
-rw-r--r--public/common/grid.css44
-rw-r--r--schema.sql1
2 files changed, 16 insertions, 29 deletions
diff --git a/public/common/grid.css b/public/common/grid.css
index 47bc6b1..c3e8714 100644
--- a/public/common/grid.css
+++ b/public/common/grid.css
@@ -91,7 +91,7 @@ aside {
display: grid;
overflow: clip;
grid-template-rows: min-content 1fr;
- width: 209px;
+ width: 210px;
border-left: 1px solid black;
}
@@ -110,10 +110,9 @@ aside {
footer {
position:absolute;
z-index: 100;
- left: 0;
bottom: 0;
background-color: white;
- padding: 0 1ex;
+ padding: 0 8px;
}
/* MENU */
@@ -180,7 +179,7 @@ header button {
#prompt {
margin: 0 50px;
- font-size: large;
+ font-size: 18px;
flex-grow: 1;
}
@@ -257,25 +256,9 @@ header button {
/* CARDS */
-.hand {
- margin: 15px;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- min-height: 370px;
-}
-
.card {
- margin: 10px;
background-size: cover;
background-repeat: no-repeat;
- transition: 100ms;
- box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
- display: none;
-}
-
-.card.show {
- display: block;
}
.card.enabled {
@@ -286,12 +269,16 @@ header button {
filter: grayscale(100%);
}
-.small_card {
- margin: 0 auto;
- background-size: cover;
- background-repeat: no-repeat;
- transition: 100ms;
- box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
+.hand {
+ margin: 15px;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ min-height: 370px;
+}
+
+.hand .card {
+ margin: 10px;
}
/* CHAT WINDOW */
@@ -309,13 +296,12 @@ header button {
border: 1px solid black;
background-color: white;
box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5);
- visibility: hidden;
- display: grid;
+ display: none;
grid-template-rows: min-content 1fr min-content;
}
#chat_window.show {
- visibility: visible;
+ display: grid;
}
#chat_header {
diff --git a/schema.sql b/schema.sql
index 419da0d..56b6fdd 100644
--- a/schema.sql
+++ b/schema.sql
@@ -11,6 +11,7 @@ create table if not exists titles (
title_name text,
bgg integer,
is_hidden boolean
+ default 0
) without rowid;
create table if not exists roles (