diff options
author | Sophie Schiller | 2019-06-04 20:43:19 +0200 |
---|---|---|
committer | Sophie Schiller | 2019-06-04 20:43:19 +0200 |
commit | 9b6ecc28f59179ed96eaf9e58fc66e6bfc0c6c8e (patch) | |
tree | be9016ff8e31e8bc7184dabe4d61c62cb83629f2 /configs/conferences/bigbrotherawards2019/main.less | |
parent | e64ea5ea20431e9073301da3032e47a1d1f589b0 (diff) |
bigbrotherawards2019: first config iteration
Diffstat (limited to 'configs/conferences/bigbrotherawards2019/main.less')
-rw-r--r-- | configs/conferences/bigbrotherawards2019/main.less | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/configs/conferences/bigbrotherawards2019/main.less b/configs/conferences/bigbrotherawards2019/main.less new file mode 100644 index 0000000..e91cbbf --- /dev/null +++ b/configs/conferences/bigbrotherawards2019/main.less @@ -0,0 +1,68 @@ +@import "../../../assets/css/_structure.less"; + +@link-color: #23285a; +@panel-bg: #ddd; +@well-bg: @panel-bg; +@panel-primary-border: #FFFFFF; +@panel-default-heading-bg: #333333; +@panel-default-text: #FFFFFF; + +@navbar-default-link-color: #FFFFFF; + +@nav-link-hover-bg: #000000; + +@navbar-default-bg: #ccc; + +// conference specific styles here + +body { +/* background-color: #215c68; */ +} + +.banner { + color: #006699; + + h2 { + font-weight: normal; + } +} + +.navbar-brand { + color: transparent !important; + height: 50px; + background-image: url('logo.png'); + background-repeat: no-repeat; + background-size: auto 30px; + background-position: 15px 10px; + + .icon { + display: none !important; + } +} + +footer a { + color: @link-color; +} + +.nav > li > a:hover, .nav > li > a:focus { + background: #eee; +} + +.bba19 { + background-image: url(banner.png); + background-repeat: no-repeat; + background-size: 613px 301px; + + margin: 0 auto; + + width: 631px; + height: 301px; + + opacity: 1; + z-index: -100; + + @media (max-width: @screen-sm-min) { + display: none; + } +} + |