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**/
@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: #fff;
}

img {
 max-width: 100%;
}

/**Typeo CSS End**/
.img-cont-full-scn, .img-cont-full-scn * {
 --page-width: 1230px;
 --base-fm: 'Rubik', sans-serif;
 --title-size: 35px;
 --base-size: 18px;
 --black-clr: #000000;
 --white-clr: #ffffff;
 --bg-clr: #fffbf8;
 --theme-clr: #ff6200;
}

.img-cont-full-scn {
 width: 100%;
 position: relative;
 font-size: var(--base-size)
 color:var(--white-clr);
 font-family: var(--base-fm);
 display: flex;
 flex-flow: row wrap;
 align-items: center;
 background-color: var(--black-clr);
}

.img-cont-item {
 width: 50%;
}

.img-cont-item img {
 width: 100%;
 display: block;
}

.aboutcont {
 padding: 20px 50px 20px 50px;
 padding-left: calc((100vw - 1230px) /2);
}

.aboutcont p {
 line-height: 1.5;
 color: var(--white-clr);
}

.img-cont-full-scn h2 {
 color: var(--white-clr);
 margin-top: 0px;
 font-size: var(--title-size);
}

.img-cont-full-scn .cmn-btn {
 padding: 12px 28px;
 border: 2px solid var(--white-clr);
 color: var(--white-clr);
 text-transform: uppercase;
 text-decoration: none;
 transition: 0.5s all;
 border-radius: 4px;
 font-size: var(--base-size);
 display: inline-block;
 margin-top: 20px;
}

.img-cont-full-scn .cmn-btn:hover {
 background-color: var(--white-clr);
 border-color: var(--white-clr);
 color: var(--black-clr);
}

Related Web Elements