Commit a1c0d5be by Vinod

Code restructured

parent 9c3514a0
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
html, html,
body { body {
width: 100%; width: 100%;
height: 100%; height: 100%;
color: white; color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
} }
.container>div:nth-child(1) { .container > div:nth-child(1) {
background-color: #41ca6e; background-color: #41ca6e;
} }
.container>div:nth-child(2) { .container > div:nth-child(2) {
background-color: #fab153; background-color: #fab153;
} }
.container>div:nth-child(3) { .container > div:nth-child(3) {
background-color: #7277d5; background-color: #7277d5;
} }
.container>div:nth-child(4) { .container > div:nth-child(4) {
background-color: #f87d51; background-color: #f87d51;
} }
.container>div:nth-child(5) { .container > div:nth-child(5) {
background-color: #ed5466; background-color: #ed5466;
} }
.container>div:nth-child(6) { .container > div:nth-child(6) {
background-color: #4ec2e7; background-color: #4ec2e7;
} }
.container { .container {
display: flex; width: 100%;
flex-wrap: wrap; height: 100%;
margin: 0 auto; margin: 0 auto;
padding: 0; padding: 0;
height: 100%;
width: 100%;
} }
.card { .card {
min-width: calc(100%/3); width: 100%;
/* height: 50vh; */ min-height: 36em;
min-height: calc(100%/2); }
.main-logo {
position: absolute;
width: 20%;
margin: 5%;
} }
.wrapper { .wrapper {
display: flex; display: flex;
width: 100%; flex-direction: column;
align-items: center; justify-content: center;
align-items: center;
width: 100%;
} }
.main-logo { .logo {
max-width: 100%; width: 15%;
width: 5%; margin-left: 20%;
margin: 25px 0 0 25px; margin-top: 25%;
position: absolute;
} }
.desc { .desc {
width: 60%; width: 100%;
} }
.hline { .hline {
width: 55%; width: 45%;
height: 1.5px; height: 1.5px;
background: white; background: white;
margin: 2% 0 2% 25%; margin: 4% 0 3% 20%;
} }
.title { .title {
font-weight: lighter; font-weight: normal;
margin-left: 25%; font-size: larger;
margin-top: 3%; margin-top: 3%;
margin-left: 20%;
} }
.offer { .offer {
text-transform: uppercase; text-transform: uppercase;
font-weight: lighter; font-weight: lighter;
font-size: smaller; margin-left: 20%;
margin-left: 25%;
} }
.logo { .image-block {
width: 15%; display: flex;
margin-left: 25%; justify-content: center;
margin-top: 30%; width: 100%;
} }
.image-block { .image-block .image1 {
width: 40%; width: 35%;
margin-bottom: 2%;
margin-top: 10%;
} }
.image-block .images { .image-block .images {
width: 80%; width: 30%;
margin: 20% 0 0 8%; margin: 10% 0 1% 0;
} }
.image-block .image1 { .image-block .image2 {
width: 80%; width: 50%;
margin: 55% 0 0 5%; margin-top: 15%;
} }
.image-block .image2 { /* Media Query for Tablets, Ipads */
float: left; @media only screen and (min-width: 480px) {
.container {
display: flex;
flex-wrap: wrap;
width: 100%; width: 100%;
margin-top: 80%; }
} .card {
width: 50%;
/* Media Query for Mobile Devices */ }
@media (max-width: 480px) { .main-logo {
.main-logo { width: 15%;
width: 18%; }
margin: 20px; .logo {
position: absolute; width: 20%;
} margin-top: 45%;
}
.card { .image-block .image1 {
width: 100%; width: 55%;
} margin-top: 15%;
}
.hline { .image-block .images {
width: 45%; width: 50%;
} margin: 15% 0 1% 0;
}
.desc { .image-block .image2 {
width: 100%; width: 70%;
} margin-top: 20%;
}
.wrapper {
width: 100%;
flex-direction: column;
}
.image-block .images {
margin-bottom: 5%;
}
.image-block .image1 {
width: 75%;
margin: 15% 15% 10% 0;
}
.image-block .image2 {
float: none;
margin: 30% 30% 0 0;
}
.logo {
margin: 20% 0 0 25%;
}
}
/* Media Query for low resolution Tablets, Ipads */
@media (min-width: 480px) and (max-width: 768px) {
.main-logo {
width: 10%;
margin: 20px;
position: absolute;
}
.card {
width: 50%;
min-height: 31em;
}
.wrapper {
width: 100%;
flex-direction: column;
}
.desc {
width: 100%;
}
.image-block {
width: 50%;
}
.image-block .images {
width: 65%;
}
.image-block .image1 {
width: 75%;
margin: 15% 15% 0 0;
}
.image-block .image2 {
float: none;
margin: 30% 30% 0 0;
}
.logo {
margin: 25% 0 0 25%;
}
}
/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 769px) and (max-width: 992px) {
.card {
width: 50%;
min-height: 21em;
}
.desc {
margin-top: 15%;
}
} }
/* Media Query for Laptops and Desktops */ /* Media Query for Laptops and Desktops */
@media (min-width: 992px) and (max-width: 1280px) { @media only screen and (min-width: 992px) {
.card { .container {
width: 33.33%; display: flex;
min-height: 22em; flex-wrap: wrap;
} width: 100%;
}
.wrapper { .card {
margin-top: 2em; width: calc(100% / 3);
} min-height: 20em;
} }
.main-logo {
/* Media Query for Large screens */ position: absolute;
@media (min-width: 1280px) { width: 5%;
.card { margin: 2%;
width: 33.33%; }
min-height: 25em; .wrapper {
} display: flex;
flex-direction: row;
/* .wrapper { width: 100%;
margin-top: 1em; }
} */ .logo {
} width: 15%;
\ No newline at end of file margin-top: 20%;
}
.desc {
width: 60%;
}
.hline {
width: 55%;
}
.title {
font-weight: 400;
font-size: medium;
}
.offer {
font-size: small;
font-weight: 400;
}
.image-block {
width: 40%;
}
.image-block .image1 {
width: 80%;
margin-top: 65%;
}
.image-block .images {
width: 80%;
margin-top: 30%;
}
.image-block .image2 {
width: 100%;
margin-top: 70%;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment