diff options
author | MaZderMind | 2015-12-27 13:12:13 +0100 |
---|---|---|
committer | MaZderMind | 2015-12-27 13:12:13 +0100 |
commit | 79728096032f97d2d65f166d405655e63cc10ce1 (patch) | |
tree | 88e91fb92e7acae065b9a8a9bc6365902e9eb89b | |
parent | 3764f9616f3c0a687760823bdcae23b879572bad (diff) |
fix link-style in relive section
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/32c3/main.less | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/configs/conferences/32c3/main.less b/configs/conferences/32c3/main.less index 25d2f30..acd38fa 100644 --- a/configs/conferences/32c3/main.less +++ b/configs/conferences/32c3/main.less @@ -42,20 +42,18 @@ body { padding: @navbar-height 0 } -body.overview { - .panel-default { +.panel-default { + color: @dark-grey; + a { color: @dark-grey; - a { - color: @dark-grey; - } } - .panel-primary { - background-color: @light-grey; - border-color: @light-grey; +} +.panel-primary { + background-color: @light-grey; + border-color: @light-grey; + color: white; + a { color: white; - a { - color: white; - } } } @@ -131,4 +129,22 @@ nav .button-wrapper > .releases { nav .button-wrapper > .about { background-position: -288px top; -}
\ No newline at end of file +} + +.well a { + color: @dark-grey; +} +.alert { + &.alert-success a { + color: @state-success-text; + } + &.alert-info a { + color: @state-info-text; + } + &.alert-warning a { + color: @state-warning-text; + } + &.alert-danger a { + color: @state-danger-text; + } +} |