diff options
author | dedeibel | 2018-12-08 19:13:25 +0100 |
---|---|---|
committer | dedeibel | 2018-12-19 22:05:53 +0100 |
commit | ae7ec55a55acfe7073f343239d791798f24f4e09 (patch) | |
tree | b2e02f7ea015c60e5e956dfb76ac436e2cd9d9c5 /configs/conferences/35c3/main.less | |
parent | 0467099d921df1939aa555a2d79ec7c9357f1a12 (diff) |
35c3: Initial - wip 35c3 config
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/35c3/main.less | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/configs/conferences/35c3/main.less b/configs/conferences/35c3/main.less new file mode 100644 index 0000000..fc48412 --- /dev/null +++ b/configs/conferences/35c3/main.less @@ -0,0 +1,36 @@ +@import "../../../assets/css/_structure.less"; + +// conference specific styles here +@color-blue: #0084B0; // fresh +@color-green: #00A356; // hope +@color-grey: #4D4D4C; // reboot + +@color-dark-grey: darken(@color-grey, 20%); +@color-light-grey: lighten(@color-grey, 30%); +@color-lighter-grey: lighten(@color-grey, 40%); + +// often configured values (and their defaults): +@brand-primary: @color-blue; +@text-color: @color-grey; + +@link-color: @color-blue; +@link-hover-color: @color-green; + +@navbar-height: 70px; + +// TODO darf nicht angegeben sein sonst wird style ignoriert, wtf +//@navbar-default-bg: transparent; +//@navbar-default-border: transparent; + +@navbar-default-link-color: white; +@navbar-default-link-hover-color: @link-hover-color; + +body { + background-color: black; + padding: @navbar-height 0 +} + +h1, h2, body.overview .room a.title, body.overview .panel-primary a, .navbar-brand { + font-family: sans-serif; +} + |