From 4f826da6efb47a2fa1af033677d9fc1c6aed1d6f Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 23 Sep 2015 11:00:51 +0200 Subject: [PATCH] CSS: Introduce main.less Meant to replace defaults.less and other "default" styling spread to other less files. refs #5543 --- public/css/icinga/main.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 public/css/icinga/main.less diff --git a/public/css/icinga/main.less b/public/css/icinga/main.less new file mode 100644 index 000000000..871d585e6 --- /dev/null +++ b/public/css/icinga/main.less @@ -0,0 +1,16 @@ +// Make padding not affect the final computed width of an element +html { + box-sizing: border-box; +} +*, +*:before, +*:after { + .box-sizing(inherit); +} + +body { + background-color: @body-bg-color; + color: @text-color; + font-family: @font-family; + font-size: @font-size; +}