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-09-07 17:05:03 +02:00

104 lines
1.2 KiB
SCSS

html {
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100%;
> .container {
flex: 1 0 auto;
}
}
.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;
}
}
footer {
margin-top: 1rem;
.navbar-nav {
justify-content: space-between;
width: 100%;
@include media-breakpoint-down(sm) {
flex-direction: column !important;
text-align: center;
}
}
}