diff options
author | Sophie Schiller | 2018-11-24 00:22:48 +0100 |
---|---|---|
committer | GitHub | 2018-11-24 00:22:48 +0100 |
commit | a2d813a2b7fd352d054adb7f30f18a1bdd03377e (patch) | |
tree | 1767b29ac97a039efe274407a100f2522298c176 /configs/conferences/rustfestrome2018/main.less | |
parent | d0623be169d0438afc201aa5dcdb6dcc46770642 (diff) | |
parent | 63dc766196c11f67e8fa5be5bcda6dfa8a94d337 (diff) |
Merge pull request #84 from badboy/rustfest-rome-2018
Add RustFest Rome 2018 config
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/rustfestrome2018/main.less | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/configs/conferences/rustfestrome2018/main.less b/configs/conferences/rustfestrome2018/main.less new file mode 100644 index 0000000..cff34dd --- /dev/null +++ b/configs/conferences/rustfestrome2018/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; +} |