Files
DiceCloud/rpg-docs/client/views/character/skills/skills.css
Thaum 071f48831e Implemented skill list
Proficiency icons
(dis)advantage icons
asterisks for conditionals
"auto fail" notification
better looking border art
2014-11-06 11:58:46 +00:00

38 lines
605 B
CSS

.profIcon{
display: inline-block;
width: 23px;
height: 14px;
background-size: contain;
background-repeat: no-repeat;
position: relative;
top: 1px;
}
table.skillTable td:nth-of-type(2) {
text-align: right;
}
table.skillTable td:nth-of-type(3) {
padding-left: 8px;
}
td.fail {
color: #AF0000;
}
.advantage{
background-image: url(/png/advantage/greenUp.png);
background-size: contain;
background-repeat: no-repeat;
}
.disadvantage{
background-image: url(/png/advantage/redDown.png);
background-size: contain;
background-repeat: no-repeat;
}
td.conditionals::after{
content: "*";
}