.fade {
	display: block;
	overflow: hidden;
	position: relative;
	background-color: #f5f5f5;
}

.fade:after {
	position: absolute;
	bottom: 0;  
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: linear-gradient(to top,
		rgba(245,245,245, 1) 5%, 
		rgba(245,245,245, 0) 95%
	);
	pointer-events: none; /* so the text is still selectable */
}