pulsar/static/scaffolding.less
simurai f51a8ad6c6 Revert chaning mixin name
git-diff seems to use `.octicon-font()`
2016-11-03 16:45:42 +09:00

36 lines
615 B
Plaintext

@import "ui-variables";
@import "octicon-mixins";
//
// Octicon font
// --------------------------------------------------
@font-face { .octicon-font-legacy(); } // keep for backwards compatibility
@font-face { .octicon-font(); }
//
// Scaffolding
// --------------------------------------------------
*,
*:before,
*:after {
box-sizing: border-box; // Reset the box-sizing
}
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
html {
font-family: @font-family;
font-size: @font-size;
line-height: 1.428571429; // 20/14
color: @text-color;
background-color: @app-background-color;
}