From aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4 Mon Sep 17 00:00:00 2001 From: George Halkiadakis Date: Sun, 24 Nov 2024 23:45:38 +0200 Subject: implement badic presentation builder function --- demos/css/easy-presentation.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 demos/css/easy-presentation.css (limited to 'demos/css') diff --git a/demos/css/easy-presentation.css b/demos/css/easy-presentation.css new file mode 100644 index 0000000..bda2424 --- /dev/null +++ b/demos/css/easy-presentation.css @@ -0,0 +1,30 @@ +html, +body { + position: relative; + height: 100%; +} + +body { + background: #222; + font-family: Helvetica Neue, Helvetica, Arial, sans-serif; + font-size: 14px; + color: #000; + margin: 0; + padding: 0; +} + +.swiper { + width: 80vw; + height: 80vh; + margin: 0 auto; +} + +.swiper-slide { + background-position: center; + background-size: cover; +} + +.swiper-slide img { + display: block; + width: 100%; +} -- cgit v1.2.3