Skip to content

Commit

Permalink
CSS: Introduce main.less
Browse files Browse the repository at this point in the history
Meant to replace defaults.less and other "default" styling spread to other less files.

refs #5543
  • Loading branch information
lippserd committed Sep 23, 2015
1 parent ae71d91 commit 4f826da
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 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;
}

0 comments on commit 4f826da

Please sign in to comment.