diff --git a/ogcardeck/cards.html b/ogcardeck/cards.html index d8717ff..bb1eb4b 100644 --- a/ogcardeck/cards.html +++ b/ogcardeck/cards.html @@ -45,6 +45,11 @@ for (let i = 0; i < ups.length; i++) { new CircleType(ups[i]).radius(160); } + + var downs = document.querySelectorAll(".down"); + for (let i = 0; i < downs.length; i++) { + new CircleType(downs[i]).dir(-1).radius(160); + } diff --git a/ogcardeck/images/coffee.PNG b/ogcardeck/images/coffee.PNG deleted file mode 100644 index 734aeff..0000000 Binary files a/ogcardeck/images/coffee.PNG and /dev/null differ diff --git a/ogcardeck/stylesheet.css b/ogcardeck/stylesheet.css index 836781d..bbec251 100644 --- a/ogcardeck/stylesheet.css +++ b/ogcardeck/stylesheet.css @@ -9,6 +9,7 @@ position: relative; border-radius: 100%; text-align: center; + break-inside: avoid; } .card > img { width: calc(100% - 8mm - 8mm); @@ -22,8 +23,15 @@ p { position: absolute; margin: 2mm; width: 100%; + font-family: "Trickster"; } p.down { bottom:0; -} \ No newline at end of file +} + +@font-face { + font-family: "Trickster"; + src: + url("trickster-COLRv1.otf") format("opentype"); + } \ No newline at end of file