diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2024-11-24 23:45:38 +0200 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2024-11-24 23:45:38 +0200 |
| commit | aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4 (patch) | |
| tree | 30d9863e37c58a7337f4042f6ec1634175d60b14 /demos/css | |
| parent | 3d39ede6aa1d4e306ce44b816e3c082e4570abc7 (diff) | |
| download | slidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.tar.gz slidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.tar.bz2 slidetray-aa66a977a2dd63bb3b6255a018bbfe720b4ce2b4.zip | |
implement badic presentation builder function
Diffstat (limited to 'demos/css')
| -rw-r--r-- | demos/css/easy-presentation.css | 30 |
1 files changed, 30 insertions, 0 deletions
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%; +} |
