[UI] add improvement to display entities with boxes

This commit is contained in:
2016-02-22 14:53:38 +01:00
parent 0801db979b
commit c5cf3ab467
6 changed files with 78 additions and 1176 deletions

View File

@@ -0,0 +1,15 @@
@mixin entity($background-color, $color: white) {
font-variant: small-caps;
display: inline;
padding: .2em .6em .3em;
font-size: 88%;
font-weight: bold;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
color: $color;
background-color: $background-color;
}