From 16a7556816c16d3e1acde93ea09035005a720b03 Mon Sep 17 00:00:00 2001 From: CoalPoweredPuppet Date: Fri, 4 Aug 2017 06:58:13 -0400 Subject: [PATCH] Vampire the Requiem, Removing the need for images for vitae removed the images in the amount of blood the creature is carrying, and replaced them with css boxes and circles. --- Vampire the Requiem/Vampire the Requiem.css | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Vampire the Requiem/Vampire the Requiem.css b/Vampire the Requiem/Vampire the Requiem.css index 798bfd6d63..86149ab9b0 100644 --- a/Vampire the Requiem/Vampire the Requiem.css +++ b/Vampire the Requiem/Vampire the Requiem.css @@ -386,27 +386,27 @@ input.sheet-redvitae:checked ~ span.sheet-redvitae, input.sheet-emptyvitae:checked ~ span.sheet-emptyvitae { display: inline-block; } .sheet-blankvitae { - width: 17px; - height: 17px; - background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/5/58/USICorpsSSI.svg/200px-USICorpsSSI.svg.png") no-repeat 0 0; - background-size: 100%; - -webkit-filter: drop-shadow(0px 0px 1px red ); + width: 20px; + height: 20px; + background: white; + border-radius:7px; + box-shadow: inset 0px 0px 3px red, 0px 0px 2px black; } .sheet-redvitae { width: 20px; height: 20px; - background: url("http://i38.tinypic.com/dytxq9.png") no-repeat 0 0; - background-size: 100%; - -webkit-filter: drop-shadow(0px 0px 1px red); + background: pink; + border-radius:7px; + box-shadow: inset 0px 0px 3px red,inset 0px 0px 5px red, inset 0px 0px 10px red, 0px 0px 2px black; } .sheet-emptyvitae { width: 20px; height: 20px; - background: url("http://upload.wikimedia.org/wikipedia/commons/9/9f/Red-circle.svg") no-repeat 0 0; - background-size: 100%; - -webkit-filter: drop-shadow(0px 0px 1px black); + background: white; + border-radius:7px; + box-shadow: inset 0px 0px 2px black, inset 0px 0px 5px black, inset 0px 0px 7px black }