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

Back to Web elements
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start (If no need remove it)**/
@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;
}

img {
	max-width: 100%;
}

/**Typeo CSS End (If no need remove it)**/
.content-info-scn, .content-info-scn * {
	--bg-clr: #f6fdff;
	--page-width: 1330px;
	--base-fm: 'Rubik', sans-serif;
	--title-size: 40px;
	--base-size: 18px;
	--base-clr: #2a2a2a;
	--white-clr: #ffffff;
	--theme-clr: #ff6200;
}

.content-info-scn {
	padding-top: 60px;
	padding-bottom: 60px;
	font-family: var(--base-fm);
	background-color: var(--bg-clr);
	font-size: var(--base-size);
	text-align: center;
	line-height: 1.5;
	color: var(--base-clr);
}

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

.content-info-scn h2 {
	margin: 0px 0 20px 0;
	font-size: var(--title-size);
	text-align: center;
	display: block;
}

.content-inner {
	max-width: 800px;
	width: 100%;
	margin: auto;
}

.content-inner .tagline {
	font-weight: 700;
	margin: 10px 0px;
	display: block;
}

.content-inner .content-link {
	border: var(--base-clr) 2px solid;
	color: var(--base-clr);
	padding: 10px 24px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 20px;
	display: inline-block;
	transition: 0.5s all;
}

.content-inner .content-link:hover {
	background-color: var(--base-clr);
	color: var(--white-clr);
}

@media(max-width:767px) {
	.content-info-scn {
		padding-top: 40px;
		padding-bottom: 40px;
		font-size: calc(var(--base-size) - 3px);
		line-height: 1.3;
	}

	.content-info-scn h2 {
		font-size: calc(var(--title-size) - 15px);
	}

	.content-inner .content-link {
		padding: 8px 20px;
	}

}

Related Web Elements