Removed SCSS, using CSS only now

SCSS wasn't being utilized enough to add much value to the build times
This commit is contained in:
Stefan Zermatten
2017-01-20 09:06:24 +02:00
parent b44fe33b30
commit 4261776d8c
17 changed files with 234 additions and 254 deletions

View File

@@ -0,0 +1,22 @@
.skill-row .skill-mod{
width: 45px;
text-align: center;
}
.skill-row .skill-mod.fail {
color: #D50000;
}
.skill-row .skill-mod.advantage{
background-image: url(/png/advantage/greenUp.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.skill-row .skill-mod.disadvantage{
background-image: url(/png/advantage/redDown.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}