From 01dcb3197aadbf0367085866564cda5bda4803d1 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 4 Nov 2015 12:05:02 +0100 Subject: [PATCH] CSS: Style headers refs #5543 --- public/css/icinga/base.less | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/public/css/icinga/base.less b/public/css/icinga/base.less index 76750330f8..317cc45927 100644 --- a/public/css/icinga/base.less +++ b/public/css/icinga/base.less @@ -51,18 +51,33 @@ body { line-height: 1.2; } +h1, h2, h3, h4, h5, h6 { + border-bottom: 1px solid @gray-lighter; + font-size: 1em; + font-weight: @font-weight-bold; + margin: @vertical-padding 0; +} + h1 { - border-bottom: 1px solid @gray-lightest; + border-color: @gray-light; font-size: 1.286em; - font-weight: normal; - margin: @vertical-padding 0; } h2 { - border-bottom: 1px solid @gray-lightest; font-size: 1.143em; +} + +h3 { + font-size: 1.143em; +} + +h5 { + font-size: @font-size-smaller; +} + +h6 { + font-size: @font-size-smaller; font-weight: normal; - margin: @vertical-padding 0; } p { @@ -72,7 +87,6 @@ p { pre { background-color: @gray-lightest; - color: @text-color-light; font-family: @font-family-fixed; padding: @vertical-padding @horizontal-padding; }