From d58bef868eed03ae54e6e80a45d890c862769ea0 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 6 Sep 2021 23:26:51 +0200 Subject: add kontra IAA 2021 --- configs/conferences/kontraIAA2021/main.less | 262 ++++++++++++++++++++++++++++ 1 file changed, 262 insertions(+) create mode 100644 configs/conferences/kontraIAA2021/main.less (limited to 'configs/conferences/kontraIAA2021/main.less') diff --git a/configs/conferences/kontraIAA2021/main.less b/configs/conferences/kontraIAA2021/main.less new file mode 100644 index 0000000..6df0226 --- /dev/null +++ b/configs/conferences/kontraIAA2021/main.less @@ -0,0 +1,262 @@ +@import "../../../assets/css/_structure.less"; + +@mainGrey: lightgray; +@grey-lighter: white; +@greyLight: white; +@bggrey: gray; +@white: #fff; + +@green: #00c466; +@orange: #fe7900; +@plum: #1f0229; +@pink: #ff47a3; + +@primary: #dede37; +@secondary: #dceeec; +@dark-green: @secondary; + +@text: black; + +@well-bg: @white; +@btn-default-bg: @mainGrey; +@panel-default-heading-bg: @mainGrey; +@panel-default-text: black; +@panel-bg: @dark-green; +@background: white; + +@navbar-height: 70px; +@navbar-default-bg: @dark-green; +@navbar-default-border: transparent; + +/* + * buttons + */ +@btn-font-weight: 600; +a.btn, +input.btn, +.btn-primary { + color: @text; + border-color: @text; + background-color: @secondary; +} +a.btn:hover, +input.btn:hover { + background-color: @primary; +} + +/* + * font + */ + +@font-face { + font-family: "Ubuntu"; + font-weight: 100; + font-style: normal; + src: url("Ubuntu.eot"); + src: url("Ubuntu.eot?#iefix") format("embedded-opentype"), + url("Ubuntu.otf") format("opentype"), url("Ubuntu.svg") format("svg"), + url("Ubuntu.ttf") format("ttf"), url("Ubuntu.woff") format("woff"), + url("Ubuntu.woff2") format("woff2"); +} + +/* + * headlines + */ + +.font-headline { + font-family: "Ubuntu", sans-serif; + color: @primary; +} + +h1, +h2, +h3, +body.overview .room a.title, +body.overview .panel-primary a, +.navbar-brand, +.panel-heading, +.panel-default > .panel-heading, +.nav.nav-tabs { + .font-headline(); +} + +h1 { +font-size: 40pt; +} + + +/* + * panels + */ + +.panel-default { + border-color: @primary; +} + +.panel-default > .panel-heading { + border-color: @primary; +} + +/* + * navbar + */ + +body.room .tab-content { + border-left: 1px solid @primary; + border-bottom: 1px solid @primary; + border-right: 1px solid @primary; +} + +.nav-tabs > li > a { +color: @text; +} +.nav-tabs > li > a:hover { +color: black; +background-color: @primary; +} + +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: black; +} + +.panel { + background-color: transparent; +} + +.panel-default > .panel-heading { + background-color: #ad621b; +} + +/* + * schedule + */ + +body .schedule .now { + //background-color: rgba(222,103,100,0.6); + //background-color: unset; +} + +body .schedule .block.event h3 { + overflow: unset; + font-size: 16px; +} + +h1, +h2 { + color: @primary; +} +h3 { + color: @text; +} + +body.overview .panel-body { + min-height: 10px; +} + +body { + background-color: @background; + color: @text; + padding: @navbar-height 0; +} + +body .schedule .block h5 { + color: #767676; +} + +.nav > li { + position: relative; + display: block; + background-color: @dark-green; +} + +nav.navbar { + .navbar-brand { + /*color: @mainGrey;*/ + } + + .navbar-right { + text-align: right; + + .btn-ssl, + a.feedback, + a.releases, + a.about { + color: #5e5e5e; + background-color: transparent; + border-color: #5e5e5e; + + &:hover { + color: @text; + background-color: @primary; + border-color: @text; + } + } + + .btn-ssl.btn-warning { + color: grey; + background: transparent; + border-color: grey; + } + } +} + +.congress { + background-image: url(R2R_logo.png); + background-repeat: no-repeat; + background-size: 200px; + + position: fixed; + left: 10px; + top: 200px; + + width: 290px; + height: 1080px; + + opacity: 1; + z-index: -100; + + @media (max-width: @screen-sm-min) { + display: none; + } +} + +nav .navbar-brand .icon { + background-image: url(voctobunny.svg); +} + +body .schedule .room.highlight .block { + background-color: @primary; +} + +body .schedule .now .overlay { + background-color: rgba(52, 36, 59, 0.4); +} + +body .schedule .block h3 { + font-weight: bold; +} + +body .schedule .block h4 { + color: @mainGrey; +} + +body .schedule .block h5 { + color: @green; +} + +body .schedule .block.optout, +body .schedule .block.pause { + background-image: linear-gradient(45deg, rgba(255, 255, 255, .05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%, transparent 75%, transparent); +} + + +#switcher div[disabled] { + background-color: @plum; + color: @green; +} + +.tab-pane { +background-color: @secondary; +} -- cgit v1.2.3