1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00
RPGnotes/static/scss/_misc.scss
2021-08-28 19:52:07 +02:00

72 lines
888 B
SCSS

.collapse-cell {
padding: 0 !important;
border: none !important;
}
.chev {
transition: transform .2s;
width: 13px;
height: auto;
}
tr.collapsed .chev {
transform: rotate(90deg);
}
tr.collapse-button:not(.collapsed) {
background: darkgray;
}
.side-card {
display: flex;
position: relative;
> div {
padding: 0.5rem;
}
.text-col {
a {
text-decoration: none;
&:focus, &:active, &:hover {
text-decoration: underline;
}
}
}
}
.character-heading {
border-bottom: solid 2px;
}
.cp:after {
background: #B87333;
}
.sp:after {
background: #CFD0D1;
}
.gp:after {
background: #FFD700;
}
.pp:after {
background: #B7B4AE;
}
.cp, .sp, .gp, .pp {
&:after {
content: "";
width: 19px;
height: 19px;
display: inline-block;
border-radius: 50%;
vertical-align: middle;
margin: 0 5px;
}
}