HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/csb.komma.pro/resources/sass/5-Components/_components.quote.scss
$c-quote-gap: space(3);


.c-quote {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: -$c-quote-gap;
	max-width: 528px;
}


.c-quote__image {
	margin-top: $c-quote-gap;
	margin-right: $c-quote-gap;
	border-radius: 100%;
	min-width: 50px;
	max-width: 120px;
	width: 10vw;
	background-color: palette(neutral, 300);
}


.c-quote__content {
	@include hyphenate;
	flex-grow: 999;
	flex-basis: 0;
	min-width: column(3,5);
	margin: $c-quote-gap 0 0 0; // reset blockquote
}


.c-quote__text {
	@include font-size(l);
	@include font-weight(medium);
	color: palette(neutral, 800);
	quotes: "‘" "’";

	&::before {
		content: open-quote;
	}
	&::after {
		content: close-quote;
	}
}


.c-quote__cite {
	margin-top: space(2);
	display: inline-flex;
	flex-direction: column;
	font-style: normal;
}


.c-quote__name {
	//@include font-size(base);
	//@include font-weight(regular);
	color: palette(neutral, 700);
}

.c-quote__function {
	@include font-size(s);
	@include font-weight(regular);
	color: palette(neutral, 400);
}


.c-quote--on-dark {
	.c-quote__text,
	.c-quote__name {
		color: palette(neutral, 0);
	}
	.c-quote__function {
		color: palette(neutral, 300);
	}
}