diff options
author | MaZderMind | 2018-05-25 23:34:59 +0200 |
---|---|---|
committer | MaZderMind | 2018-05-25 23:34:59 +0200 |
commit | f9c474621d2be52fcb4771c27f16a9f9d6142c8b (patch) | |
tree | bd5cdefa09063ac21bcc52a0b89ef53a5295e2b2 /configs/conferences/rustfest2018/main.less | |
parent | ebba53bf107603c128b72b5a61f2e2cdafb98b73 (diff) | |
parent | 21bf1ecd2fb7a93047c03a5008c884732b7de601 (diff) |
Merge branch 'badboy-rustfest2018'
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/rustfest2018/main.less | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/configs/conferences/rustfest2018/main.less b/configs/conferences/rustfest2018/main.less new file mode 100644 index 0000000..cff34dd --- /dev/null +++ b/configs/conferences/rustfest2018/main.less @@ -0,0 +1,54 @@ +@import "../../../assets/css/_structure.less"; + +@brand-primary: #5252c9; + +@link-color: #1b5fbf; +@panel-primary-border: white; + +@text-color: white; + +@font-face { + font-family: 'Source Sans Pro Light'; + font-style: normal; + font-weight: normal; + src: url('SourceCodePro-Light.eot'); /* IE9 Compat Modes */ + src: local('Source Code Pro Light'), local('SourceCodePro-Light'), + url('SourceCodePro-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('SourceCodePro-Light.otf.woff2') format('woff2'), /* Super Modern Browsers */ + url('SourceCodePro-Light.otf.woff') format('woff'), /* Modern Browsers */ + url('SourceCodePro-Light.ttf') format('truetype'), /* Safari, Android, iOS */ + url('SourceSansPro-Light.svg#SourceSansPro-Light') format('svg'); /* Legacy iOS */ +} + +body { + //background-color: @green; +} + +footer { + background-color: white; + + color: @link-color; + a { + color: @link-color; + &:hover { + text-decoration: underline; + color: @link-color; + } + } +} + +body { + padding-bottom: 170px + 30px + 30px + 60px; + position: relative; +} + +.logo { + background: url('logo.svg') no-repeat center; + height: 170px; + position: absolute; + bottom: 30px + 25px; + z-index: -100; + + left: 0; + right: 0; +} |