diff options
-rw-r--r-- | README | 5 | ||||
-rw-r--r-- | play.css | 6 | ||||
-rw-r--r-- | title.sql | 3 |
3 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,5 @@ +This game is implemented with the generous permission of Fort Circle Games. + +Rules and art assets are Copyright 2020 Fort Circle Games. + +Source code to this digital implementation is Copyright 2021-2022 Tor Andersson. @@ -32,6 +32,12 @@ body.Observer .hand_separator { display: none; } width: 250px; height: 350px; border-radius: 12px; + display: none; + box-shadow: 1px 1px 5px rgba(0,0,0,0.5); +} + +.card.show { + display: block; } .card.blank { diff --git a/title.sql b/title.sql new file mode 100644 index 0000000..864a721 --- /dev/null +++ b/title.sql @@ -0,0 +1,3 @@ +insert or replace into titles ( title_id, title_name, bgg ) values ( 'shores-of-tripoli', 'Shores of Tripoli', 237860 ); +insert or replace into roles values ( 'shores-of-tripoli', 'Tripolitania' ); +insert or replace into roles values ( 'shores-of-tripoli', 'United States' ); |