From 4af3fa2701525fb8b5faa9027a99b485b1f82dbf Mon Sep 17 00:00:00 2001 From: Livia Date: Tue, 8 Apr 2025 12:23:07 +0200 Subject: [PATCH] add mobile style --- static/style/mobile.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 static/style/mobile.css diff --git a/static/style/mobile.css b/static/style/mobile.css new file mode 100644 index 0000000..fc12882 --- /dev/null +++ b/static/style/mobile.css @@ -0,0 +1,29 @@ +/* all mobile devices */ +@media all and (min-width:0px) and (max-width: 1020px) { + .cover { + background-image: url('/img/if25_banner_no_text.png')!important; + } + .bg-transparent { + background-color: rgba(0, 0, 0, 0.4)!important; + } + div.flex-l.items-center { + text-shadow: 1px 1px 40px #000000; + + } +} + +/* if edgecases occur */ +/* tablets */ +@media all and (min-width:569px) and (max-width: 768px) { + +} + +/* phablet */ +@media all and (min-width:481px) and (max-width: 568px) { + +} + +/* mobile phone */ +@media all and (min-width:321px) and (max-width: 480px) { + +} \ No newline at end of file