
html,body{
	background: #ccc;
}


.test{
	position:relative;
	width:100px;
	height:100px;
	background:yellow;
	&:after{
		content:"";
		width:10px;
		height:10px;
		position:absolute;
		background:#222;
	}
}

h1{
	color:yellow;
}
