diff options
author | Thorsten Fleck | 2018-11-18 12:18:54 +0100 |
---|---|---|
committer | Thorsten Fleck | 2018-11-18 12:18:54 +0100 |
commit | 28ec19a6509daa5fc47a82796132bf4090c1baed (patch) | |
tree | 2088c057a4ec241877fbed19c364912c6b4d2d2d /configs | |
parent | 48d94e40c55c2cc5ad2c123fe614b4354d6578dc (diff) |
denog10: Design-Fixes
Diffstat (limited to 'configs')
-rw-r--r-- | configs/conferences/denog10/config.php | 2 | ||||
-rw-r--r-- | configs/conferences/denog10/main.less | 23 |
2 files changed, 15 insertions, 10 deletions
diff --git a/configs/conferences/denog10/config.php b/configs/conferences/denog10/config.php index 3a04e93..1a10adb 100644 --- a/configs/conferences/denog10/config.php +++ b/configs/conferences/denog10/config.php @@ -76,7 +76,7 @@ $CONFIG['CONFERENCE'] = array( * Wird diese Zeile auskommentiert, wird kein Banner ausgegeben. */ /** 'BANNER_HTML' => '<img src="../configs/conferences/fiffkon16/logo.png" class="FIfFKon">', **/ - 'BANNER_HTML' => '<div class="denog10"></div>', + 'BANNER_HTML' => '<div class="outer-div"><div class="denog10"></div></div>', /** * Link zu den Recordings diff --git a/configs/conferences/denog10/main.less b/configs/conferences/denog10/main.less index ac10a18..b8101ad 100644 --- a/configs/conferences/denog10/main.less +++ b/configs/conferences/denog10/main.less @@ -1,9 +1,10 @@ @import "../../../assets/css/_structure.less"; -@hgelb: #ffc800; +@gelb: #f9cd00; @grey-lighter: #333333; @grey-darker: #2a2a2a; @grey-light: #c1c1c1; +@dark: #292a2d; @brand-primary: @gelb; @well-bg: @grey-lighter; @@ -14,7 +15,7 @@ @panel-bg: @grey-lighter; body { - background-color: @grey-darker; + background-color: @dark; color: @grey-light; } @@ -27,19 +28,23 @@ nav .navbar-brand .icon { background-size: contain; } +.outer-div { + position: absolute; + bottom: 30px; + width: 100%; +} + .denog10 { background-image: url(denog-logo-konferenz-10_v001_yellow_white.png); background-repeat: no-repeat; - background-size: 300px 212px; + background-size: 500px 354px; - position: fixed; - left: 10px; - bottom: 40px; + margin: 0 auto; - width: 300px; - height: 212 px; + width: 500px; + height: 354px; - opacity: 0.4; + opacity: 1; z-index: -100; @media (max-width: @screen-sm-min) { |