Facebook

https://danielpietrasik.pl/historia-css/

by Daniel Pietrasik

HTML

<!-- 
 - Historia CSS - kaskadowe arkusze stylów od samego początku
 - https://danielpietrasik.pl/historia-css/
-->

<div id="facebook"></div>

CSS

/**
 * Historia CSS - kaskadowe arkusze stylów od samego początku
 * https://danielpietrasik.pl/historia-css/
 **/


#facebook {
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
	background: #0866ff;
	border-radius: 100%;
	margin: 40px auto 0; 
}

#facebook::before {
	position: absolute;
	content: "";
	width: 20px;
  top: 24px;
	bottom: 0;
	right: 32px;
	background: #0866ff;
	border: 20px solid #fff;
  border-width: 20px 0 0 20px;
	border-radius: 25px 0 0 0;
}

#facebook::after {
	position: absolute;
	content: "";
	width: 46px;
	top: 62px;
	height: 17px;
	right: 39px;
	background: #fff;
}