1
0
James Ketrenos bb6b4e1a36 Fix bold spacing in ViewCard
Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
2022-03-06 18:45:11 -08:00

52 lines
791 B
CSS

.ViewCard {
display: flex;
position: absolute;
left: 0;
right: 30rem;
bottom: 0;
top: 0;
justify-content: center;
align-items: center;
z-index: 1000;
}
.ViewCard > * {
max-height: calc(100vh - 2em);
overflow: auto;
margin: 0.5em;
width: 40em;
display: inline-flex;
padding: 0.5em;
flex-direction: column;
}
.ViewCard .Title {
align-self: center;
padding: 2px;
font-weight: bold;
margin-bottom: 0.5em;
}
.ViewCard .Description {
padding: 1em;
box-sizing: border-box;
}
.ViewCard .Description b {
margin: 0 0.25rem;
}
.ViewCard .Description > div {
margin-bottom: 1rem;
line-height: 1.25rem;
}
.ViewCard .Description div:first-of-type {
margin-top: 0;
}
.ViewCard .Resource {
width: 10em; /* 5x7 aspect ratio */
height: 14em;
}