Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .idea/ResponsiveDesign.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

202 changes: 202 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions WinterBatch2018/Yogesh/Column Drop/CloumnDrop.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ColumnDrop</title>
<link rel="stylesheet" href="styleColumnDrop.css">
</head>
<body>
<div class="big-box">

<div class="box1">
<div class="subbox1">

</div>
<div class="subbox2">

</div>
</div>
<div class="box2">

</div>
</div>
</body>
</html>
90 changes: 90 additions & 0 deletions WinterBatch2018/Yogesh/Column Drop/styleColumnDrop.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
.big-box{
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
height: 1000px;
}
.box1{
width: 100%;
height: 1000px;
}
.box2{
width: 100%;
height: 200px;
background-color: aqua;
}
.subbox1{
width: 100%;
height: 70%;
background-color: darkblue;
}
.subbox2{
width: 100%;
height: 30%;
background-color: blue;
}

@media screen and (min-width: 500px) and (max-width: 1000px){
.box1{
width: 600px;
}
.subbox1{
height: 50%;
}
.subbox2{
height: 50%;
}
.box2{
height: 300px;
}
}

@media screen and (min-width: 1000px) and (max-width: 1400px){
.big-box{
width: 1000px;
/*flex-wrap: wrap;*/
margin: auto auto;
justify-content: center;
}
.box1{
height: 65%;
display: flex;

}
.subbox1{
width: 30%;
height: 100%;
}
.subbox2{
width: 70%;
height: 100%;
}
.box2{
height: 35%;
}
}
@media screen and (min-width: 1400px) {
.big-box{
width: 100%;
max-width: 1400px;
margin: auto auto;
}
.box1{
width: 66%;
height: 100%;
display: flex;
}
.subbox1{
width: 50%;
height: 100%;
}
.subbox2{
width: 50%;
height: 100%;
}
.box2{
width: 34%;
height: 100%;
}
}
2 changes: 2 additions & 0 deletions WinterBatch2018/Yogesh/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
WINTER BATCH 2018
NAME : YOGESH MEENA