aboutsummaryrefslogtreecommitdiff
path: root/static/coupons.css
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-09-09 15:17:58 -0400
committerB. Stack <bgstack15@gmail.com>2022-09-09 15:17:58 -0400
commit6d04ba74279e3e8011a60bde17b2ae4e2a752fa0 (patch)
treece9aa02264b7fc98e507f34b1694e7794e8f9095 /static/coupons.css
parentuse XDG_CACHE_HOME correctly (diff)
downloadcoupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.gz
coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.bz2
coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.zip
add web app
Diffstat (limited to 'static/coupons.css')
-rw-r--r--static/coupons.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/static/coupons.css b/static/coupons.css
new file mode 100644
index 0000000..ea225ff
--- /dev/null
+++ b/static/coupons.css
@@ -0,0 +1,27 @@
+/*
+publix #64953F;
+ingles #EA2754;
+food lion #004FAC;
+lidl #00508D;
+ */
+
+div .store {
+ border-style: solid;
+ border-width: 5px;
+}
+div .publix {
+ border-color: #64953F;
+}
+div .ingles {
+ border-color: #EA2754;
+}
+div .food.lion {
+ border-color: #004FAC;
+}
+div .lidl {
+ border-color: #00508D;
+}
+
+.storeimg {
+ max-height: 60px;
+}
bgstack15