Template:Library card/style.css

Template page
.library-card{
	width:300px;
	margin:20px 0 0 20px;
	padding:10px;
	border:1px gray solid;
    border-radius:20px 20px 0px 0px;
	/* might have to move flex into a parent container, which would mean a template for the library home page which gets populated with this template */
    /*
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
    */
}

.library-card-image{
	background-size:cover;
	display:table-row;
	background:none;
}

.library-card-content{
}

.library-card-title{
	font-size:1.2rem;
	border-top:1px solid gray;
}

.library-card-works{
	font-size:0.9rem;
}

.library-card-title,
.library-card-works {
  display: table-row;
}

p{
	text-align:center;
}

pre{
}