diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-01-01 01:38:24 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:12:42 +0100 |
commit | 990c198dc1fee95d5de6328f47172bac31bac9aa (patch) | |
tree | 183e14fcd25681ebdd152e384709d94e8697524a | |
parent | 9af890a1deece078539bd84b25256fe4e4f2bb6f (diff) | |
download | shores-of-tripoli-990c198dc1fee95d5de6328f47172bac31bac9aa.tar.gz |
Split into separate module.
-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' ); |