Template:HatNote/styles.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 1: Line 1:
.hNote-container {
.hNote-container {
     display: block;
display: flex;
align-items: center;
padding: 10px 15px;
margin-top: 0.6rem;
margin-bottom: 0.8rem;
background: var( --color-surface-2 );
border-radius: var( --border-radius--medium );
color: var( --color-base--subtle );
font-size: 0.875rem;
line-height: 1.4;
     width: 100%;
}
}


Line 8: Line 18:


.hNote-image {
.hNote-image {
    float: left;
}
}

Revision as of 10:08, 19 December 2022

.hNote-container {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	margin-top: 0.6rem;
	margin-bottom: 0.8rem;
	background: var( --color-surface-2 );
	border-radius: var( --border-radius--medium );
	color: var( --color-base--subtle );
	font-size: 0.875rem;
	line-height: 1.4;
    width: 100%;
}

.hNote-content {
	padding-left: 10px;
}

.hNote-image {
}