Fixed width class added

This commit is contained in:
Andrew Gioia 2015-03-21 18:27:24 -04:00
parent cb8a2fa161
commit f899d84794
4 changed files with 15 additions and 1 deletions

View File

@ -52,6 +52,12 @@
.ss-mythic {
color: #A2472A;
}
/**
* Fixed width */
.ss-fw {
width: 1.28571429em;
text-align: center;
}
/**
* Core */
.ss-lea:before {

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -3,4 +3,5 @@
@import "core.less";
@import "sizes.less";
@import "rarities.less";
@import "width.less";
@import "icons.less";

7
less/width.less Normal file
View File

@ -0,0 +1,7 @@
/**
* Fixed width */
.@{prefix}-fw {
width: (18em / 14);
text-align: center;
}