<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
&lt;div class="profile-photo profile-photo-md"&gt;
	&lt;img ng-src="{{guardian.photoUrl}}&amp;width=40&amp;amp;height=40&amp;amp;mode=crop&amp;anchor=topcenter"&gt;
&lt;/div&gt;
*/

.profile-photo {
	border-radius: 50%;
	overflow: hidden;
	display: inline-block;
}
	.profile-photo img {
		max-width: 100%;
	}


	.profile-photo-sm,
	.profile-photo-sm img {
		width: 28px;
		height: 28px;
	}

	.profile-photo-md,
	.profile-photo-md img {
		width: 40px;
		height: 40px;
	}

	.profile-photo-lg,
	.profile-photo-lg img {
		width: 100px;
		height: 100px;
	}</pre></body></html>