aboutsummaryrefslogtreecommitdiff
path: root/configs/conferences/32c3/main.less
diff options
context:
space:
mode:
authorMaZderMind2015-12-20 17:35:19 +0100
committerMaZderMind2015-12-20 17:35:19 +0100
commit07c6e5d8bdcf1dcbe165aa0293e49088c558f18b (patch)
tree8604a6a7ed81e2e816adbf3f59cfda7778a55c50 /configs/conferences/32c3/main.less
parent813ccc46d1bb5fb4ab3cd057bc97237751f0501b (diff)
[32c3] simplistic styling
Diffstat (limited to 'configs/conferences/32c3/main.less')
-rw-r--r--configs/conferences/32c3/main.less52
1 files changed, 52 insertions, 0 deletions
diff --git a/configs/conferences/32c3/main.less b/configs/conferences/32c3/main.less
new file mode 100644
index 0000000..5b8ea83
--- /dev/null
+++ b/configs/conferences/32c3/main.less
@@ -0,0 +1,52 @@
+@import "../../../assets/css/_structure.less";
+
+// conference specific styles here
+@darker-grey: lighten(black, 15%);
+@dark-grey: lighten(black, 20%);
+@light-grey: lighten(black, 30%);
+@lighter-grey: lighten(black, 40%);
+
+// often configured values (and their defaults):
+//
+@brand-primary: #f19224;
+@text-color: white;
+
+@link-color: white;
+@link-hover-color: @lighter-grey;
+
+@navbar-default-color: @text-color;
+@navbar-default-bg: @dark-grey;
+
+//@navbar-default-link-color: @link-color;
+//@navbar-default-link-hover-color: @link-hover-color;
+
+body {
+ background-color: black;
+}
+
+body.overview {
+ .panel-default {
+ color: @dark-grey;
+ a {
+ color: @dark-grey;
+ }
+ }
+ .panel-primary {
+ background-color: @light-grey;
+ border-color: @light-grey;
+ color: white;
+ a {
+ color: white;
+ }
+ }
+}
+
+.well {
+ color: @dark-grey;
+}
+
+.banner {
+ background: url(logo.gif) no-repeat center;
+ height: 150px;
+ text-indent: -9999em;
+}