Template:Library card/style.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 27: Line 27:
margin:0;
margin:0;
text-align:center;
text-align:center;
display:inline;
display:block;
z-index:1000;
z-index:1000;
background-color:red; /* will need to change colour to account for dark mode */
background-color:red; /* will need to change colour to account for dark mode */
Line 40: Line 40:
}
}


pre{
span{
display:inline;
}
}

Revision as of 01:09, 5 July 2023

.library-card{
	width:300px;
	margin:20px 0 0 20px;
	padding:10px;
	border:1px gray solid;
    border-radius:20px 20px 0px 0px;
    overflow:hidden;
}

.library-card-image{
	height:400px;
	width:100%;
	border-bottom:1px solid gray;
	padding:0;
	margin:0;
}

img{
	transform: scale(1.2);
	overflow:hidden;
	padding:0;
	margin:0;
}

.library-card-content{
	padding:0;
	margin:0;
	text-align:center;
	display:block;
	z-index:1000;
	background-color:red; /* will need to change colour to account for dark mode */
}

.library-card-title{
	font-size:1.2rem;
}

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

span{
	display:inline;
}