From 2749827455e471cec1ae207981346d85f267855f Mon Sep 17 00:00:00 2001 From: nael Date: Tue, 2 Jul 2019 18:20:19 +0200 Subject: [PATCH] wip #2747 @7 --- public/_modules/home-slider/style.css | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 public/_modules/home-slider/style.css diff --git a/public/_modules/home-slider/style.css b/public/_modules/home-slider/style.css new file mode 100644 index 0000000..a9092bc --- /dev/null +++ b/public/_modules/home-slider/style.css @@ -0,0 +1,33 @@ +* { + padding: 0; + box-sizing: border-box !important; + margin: 0; + font-family: 'Muli', sans-serif; +} +.column-wrapper.hide { + display: none; +} +.arrow { + cursor: pointer; +} +.home-arrow-left { + position: absolute; + top: 50%; + left: 2%; +} +.home-arrow-right { + position: absolute; + top: 50%; + right: 2%; +} +.column-wrapper.active { + display: grid; +} +.slide-img { + position: relative; +} +.img-slider { + position: absolute; + width: 100%; + height: 100%; +} -- 2.39.5