Proficiency icons (dis)advantage icons asterisks for conditionals "auto fail" notification better looking border art
38 lines
605 B
CSS
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: "*";
|
|
} |