Commit 2842eac4 by Vinod

Updated the code

parent 3c4d2bf7
...@@ -13,93 +13,108 @@ body { ...@@ -13,93 +13,108 @@ body {
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
} }
.container > div:nth-child(1) { .container > div:nth-child(2) {
background-color: #41ca6e; background-color: #41ca6e;
} }
.container > div:nth-child(2) { .container > div:nth-child(3) {
background-color: #fab153; background-color: #fab153;
} }
.container > div:nth-child(3) { .container > div:nth-child(4) {
background-color: #7277d5; background-color: #7277d5;
} }
.container > div:nth-child(4) { .container > div:nth-child(5) {
background-color: #f87d51; background-color: #f87d51;
} }
.container > div:nth-child(5) { .container > div:nth-child(6) {
background-color: #ed5466; background-color: #ed5466;
} }
.container > div:nth-child(6) { .container > div:nth-child(7) {
background-color: #4ec2e7; background-color: #4ec2e7;
} }
.container { .container {
display: grid;
grid-template-columns: repeat(1, 1fr); grid-template-columns: repeat(1, 1fr);
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
} }
.card { .card {
min-height: auto; padding: 5%;
scroll-snap-align: start;
min-height: 100vh;
display: grid;
align-items: center;
} }
.wrapper { .wrapper {
width: 100%; width: 100%;
align-self: center;
display: grid;
margin-top: 20%;
} }
.main-logo { .main-logo {
position: absolute; position: absolute;
width: 20%; width: 18%;
margin: 5%; margin: 5%;
} }
.desc { .desc {
display: grid; display: grid;
justify-content: center;
width: 100%; width: 100%;
} }
.logo { .logo {
width: 15%; width: 20%;
margin: 20% 0 5% 25%; margin: 0 0 5% 0;
} }
.title { .title {
font-size: larger; font-size: larger;
font-weight: 400; font-weight: 400;
margin-left: 25%;
} }
.hline { .hline {
width: 50%; width: 65%;
height: 1.5px; height: 1.5px;
background: white; background: white;
margin: 4% 0 2% 25%; margin: 4% 0 2% 0;
} }
.offer { .offer {
text-transform: uppercase; text-transform: uppercase;
font-weight: lighter; font-weight: lighter;
font-size: large; font-size: large;
margin-left: 25%;
} }
.image-block { .image-block {
width: 100%; width: 100%;
text-align: center;
} }
.image-block .image1 { .image-block .image1 {
width: 50%; width: 50%;
margin: 10% 0 2% 20%; margin: 10% 0 2% 0;
} }
.image-block .images { .image-block .images {
width: 40%; width: 40%;
margin: 10% 0 2% 30%; margin: 10% 0 2% 0;
} }
.image-block .image2 { .image-block .image2 {
width: 60%; width: 60%;
margin: 10% 0 0 20%; margin: 10% 0 0 0;
} }
/* Media Query for Tablets, Ipads */ /* Media Query for Tablets, Ipads */
@media only screen and (min-width: 480px) { @media only screen and (min-width: 480px) {
.container { .container {
display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
height: auto;
} }
.card { .card {
width: 100%; width: 100%;
min-height: 65vh;
}
.wrapper {
align-self: self-start;
} }
.hline { .hline {
width: 60%; width: 60%;
...@@ -107,9 +122,8 @@ body { ...@@ -107,9 +122,8 @@ body {
background: white; background: white;
} }
.main-logo { .main-logo {
position: absolute; width: 10%;
width: 13%; margin: 3%;
margin: 5%;
} }
.title { .title {
font-size: large; font-size: large;
...@@ -119,7 +133,6 @@ body { ...@@ -119,7 +133,6 @@ body {
} }
.logo { .logo {
width: 20%; width: 20%;
margin: 30% 0 5% 25%;
} }
} }
...@@ -128,9 +141,10 @@ body { ...@@ -128,9 +141,10 @@ body {
.container { .container {
display: grid; display: grid;
grid-template-columns: repeat(2, 1fr); grid-template-columns: repeat(2, 1fr);
height: auto;
} }
.card { .card {
min-height: 45vh; min-height: 25vh;
} }
.main-logo { .main-logo {
position: absolute; position: absolute;
...@@ -139,14 +153,16 @@ body { ...@@ -139,14 +153,16 @@ body {
} }
.wrapper { .wrapper {
width: 100%; width: 100%;
margin: 0;
grid-template-columns: repeat(2, 1fr);
} }
.logo { .logo {
width: 25%; width: 25%;
margin: 30% 0 5% 25%; margin: 30% 0 5% 0;
} }
.desc { .desc {
display: inline-block; display: inline-block;
width: 60%; width: 100%;
} }
.title { .title {
font-weight: 400; font-weight: 400;
...@@ -158,20 +174,19 @@ body { ...@@ -158,20 +174,19 @@ body {
margin-bottom: 5%; margin-bottom: 5%;
} }
.image-block { .image-block {
width: 40%; width: 100%;
float: right; text-align: right;
} }
.image-block .image1 { .image-block .image1 {
width: 80%; width: 65%;
margin: 65% 0 0 0; margin: 30% 0 0 0;
} }
.image-block .images { .image-block .images {
width: 70%; width: 55%;
margin: 35% 0 0 5%;
} }
.image-block .image2 { .image-block .image2 {
width: 100%; width: 80%;
margin: 80% 0 0 0; margin: 50% 0 0 0;
} }
} }
...@@ -183,6 +198,8 @@ body { ...@@ -183,6 +198,8 @@ body {
} }
.card { .card {
min-height: 50vh; min-height: 50vh;
display: grid;
align-content: center;
} }
.main-logo { .main-logo {
position: absolute; position: absolute;
...@@ -191,14 +208,15 @@ body { ...@@ -191,14 +208,15 @@ body {
} }
.wrapper { .wrapper {
width: 100%; width: 100%;
display: grid;
align-content: center;
} }
.logo { .logo {
width: 20%; width: 20%;
margin: 40% 0 5% 25%;
} }
.desc { .desc {
display: inline-block; display: inline-block;
width: 60%; width: 100%;
} }
.title { .title {
font-weight: 400; font-weight: 400;
...@@ -210,19 +228,16 @@ body { ...@@ -210,19 +228,16 @@ body {
margin-bottom: 5%; margin-bottom: 5%;
} }
.image-block { .image-block {
width: 40%; width: 100%;
float: right;
} }
.image-block .image1 { .image-block .image1 {
width: 85%; width: 75%;
margin-top: 65%;
} }
.image-block .images { .image-block .images {
width: 70%; width: 60%;
margin: 45% 0 0 5%; margin: 0;
} }
.image-block .image2 { .image-block .image2 {
width: 100%; width: 100%;
margin-top: 85%;
} }
} }
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<head> <meta charset="UTF-8" />
<meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Layout(without Grid & Flex)</title> <title>Responsive Layout(without Grid & Flex)</title>
<link rel="stylesheet" href="/CSS/style.css"> <link rel="stylesheet" href="/CSS/style.css" />
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<div class="card"> <img class="main-logo" src="/Logos/logo-aoc.png" alt="logo-aoc" />
<img class="main-logo" src="/Logos/logo-aoc.png" alt="logo-aoc"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-f-secure.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>Astonishing <br>features requires <br>worry-free security</p> src="/Logos/logo-f-secure.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>1 year free mobile security</p> <p>
</div> Astonishing <br />features requires <br />worry-free security
</div> </p>
<div class="image-block"> </div>
<img class="image1" src="/Images/image-1.png" alt="image-1"> <div class="hline"></div>
</div> <div class="offer">
<p>1 year free mobile security</p>
</div> </div>
</div>
<div class="image-block">
<img class="image1" src="/Images/image-1.png" alt="image-1" />
</div>
</div> </div>
</div>
<div class="card"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-digitainment.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>Be hooked!</p> src="/Logos/logo-digitainment.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>2000+ movies from bollywood</p> <p>Be hooked!</p>
</div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-2.png" alt="image-2">
</div>
</div> </div>
<div class="hline"></div>
<div class="offer">
<p>2000+ movies from bollywood</p>
</div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-2.png" alt="image-2" />
</div>
</div> </div>
</div>
<div class="card"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-adaptxt.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>The best things in <br>life are free<br></p> src="/Logos/logo-adaptxt.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>free mobile pouch</p> <p>The best things in <br />life are free<br /></p>
</div> </div>
</div> <div class="hline"></div>
<div class="image-block"> <div class="offer">
<img class="images" src="/Images/image-3.png" alt="image-3"> <p>free mobile pouch</p>
</div>
</div> </div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-3.png" alt="image-3" />
</div>
</div> </div>
</div>
<div class="card"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-hungama.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>The thump <br>never ends here</p> src="/Logos/logo-hungama.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>1000's of songs</p> <p>The thump <br />never ends here</p>
</div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-4.png" alt="image-4">
</div>
</div> </div>
<div class="hline"></div>
<div class="offer">
<p>1000's of songs</p>
</div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-4.png" alt="image-4" />
</div>
</div> </div>
</div>
<div class="card"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-adaptxt.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>Being globally you</p> src="/Logos/logo-adaptxt.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>21 indian & foreign languages</p> <p>Being globally you</p>
</div> </div>
</div> <div class="hline"></div>
<div class="image-block"> <div class="offer">
<img class="images" src="/Images/image-5.png" alt="image-5"> <p>21 indian & foreign languages</p>
</div>
</div> </div>
</div>
<div class="image-block">
<img class="images" src="/Images/image-5.png" alt="image-5" />
</div>
</div> </div>
</div>
<div class="card"> <div class="card">
<div class="wrapper"> <div class="wrapper">
<div class="desc"> <div class="desc">
<img class="logo" src="/Logos/logo-read-where.png" alt="logo-f-secure"> <img
<div class="title"> class="logo"
<p>For the wise</p> src="/Logos/logo-read-where.png"
</div> alt="logo-f-secure"
<div class="hline"></div> />
<div class="offer"> <div class="title">
<p>1000 pts discount <br>on subscription</p> <p>For the wise</p>
</div>
</div>
<div class="image-block">
<img class="image2" src="/Images/image-6.png" alt="image-6">
</div>
</div> </div>
<div class="hline"></div>
<div class="offer">
<p>1000 pts discount <br />on subscription</p>
</div>
</div>
<div class="image-block">
<img class="image2" src="/Images/image-6.png" alt="image-6" />
</div>
</div> </div>
</div>
</div> </div>
</body> </body>
</html>
</html>
\ No newline at end of file
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