Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

🗙
Login
Register

Create Account

Cancel
Back to Common
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
	box-sizing: border-box;
}

body {
	margin: 0px;
	background-color: #ffffff;
}

/**Typeo CSS End**/
.e-policy-scn, .e-policy-scn * {
	--page-width: 1230px;
	--base-fm: 'Rubik', sans-serif;
	--label-size: 20px;
	--base-size: 16px;
	--base-clr: #424242;
	--white-clr: #ffffff;
	--theme-clr: #525fe1;
	--bg-clr: #fff8f8;
}

.e-policy-scn {
	background: var(--bg-clr);
	font-family: var(--base-fm);
	font-size: var(--base-size);
	padding: 30px 0;
	display: inline-block;
	width: 100%;
}

.page-width {
	max-width: var(--page-width);
	margin: auto;
	width: 100%;
	padding: 0 15px;
}

.e-policy-list {
	display: flex;
	flex-flow: row wrap;
	width: calc(100% + 30px);
	margin-left: -15px;
}

.e-policy-list .e-policy-item {
	position: relative;
	width: calc(33.33% - 30px);
	margin: 15px;
	text-align: center;
}

.icon-img {
	max-height: 40px;
}

.e-policy-list .e-policy-item h4 {
	font-size: var(--label-size);
	margin: 5px 0px 0px 0px;
	font-weight: 500;
	line-height: 1.3;
}

.e-policy-list .e-policy-item p {
	margin: 0px;
}

@media(max-width:767px) {
	.e-policy-scn {
		padding: 30px 0px;
	}

	.e-policy-list {
		width: 100%;
		margin-left: 0;
	}
	
	.e-policy-list .e-policy-item {
		width: 100%;
		margin: 20px 0px;
	}

}

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *