CSS: Introduce main.less

Meant to replace defaults.less and other "default" styling spread to other less files.

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-23 11:00:51 +02:00
parent ae71d91d0d
commit 4f826da6ef
1 changed files with 16 additions and 0 deletions

View File

@ -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;
}