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
60 changes: 60 additions & 0 deletions Nitin Madhukar/columndrop.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
max-width: 800px;
position: relative;
margin: auto;
}
.box {
width: 100%;
height: 200px;
}
.box1 {
background-color: #011627;
}
.box2 {
background-color: #FDFFFC;
}

.box3 {
background-color :#2EC4B6;
}

.box4 {
background-color :#E71D36;
}


.box5 {
background-color : #FF9F1C;
}


@media screen and (min-width:600px){
.box{
width: 100%;
order:3;
}
.box1{
width: 33.33%;
order:2;
}
.box2{
width: 33.33%;
order:2;
}
.box3{
width: 33.33%;
order:2;
}
.box4{
width: 100%;
order:3;
}
.box5{
width: 100%;
order:1;
}

}
29 changes: 29 additions & 0 deletions Nitin Madhukar/columndrop.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="columndrop.css">
<title>New HTML document by Nitin Madhukar</title>

</head>

<body>

<div class="container">
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
<div class="box box5"></div>


</div>

</body>

</html>
60 changes: 60 additions & 0 deletions Nitin Madhukar/layout_shifter.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
max-width: 800px;
position: relative;
margin: auto;
}
.box {
width: 100%;
height: 200px;
}
.box1 {
background-color: #252422;
}
.box2 {
background-color: #CCC5B9;
}

.box3 {
background-color :#FFFCF2;
}

.box4 {
background-color :GREEN;
}


.box5 {
background-color : BLUE;
}


@media screen and (min-width:600px){
.box{
width: 100%;
order:3;
}
.box1{
width: 33.33%;
order:2;
}
.box2{
width: 33.33%;
order:2;
}
.box3{
width: 33.33%;
order:2;
}
.box4{
width: 100%;
order:3;
}
.box5{
width: 100%;
order:1;
}

}
29 changes: 29 additions & 0 deletions Nitin Madhukar/layout_shifter.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="layout_shifter.css">
<title>New HTML document by Nitin Madhukar</title>

</head>

<body>

<div class="container">
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
<div class="box box5"></div>


</div>

</body>

</html>
67 changes: 67 additions & 0 deletions Nitin Madhukar/mostlyfluid.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
position: relative;
max-width:1200px;
margin: 0 auto;

}

.box {
width: 100%;
height: 200px;
transition: all 0.7s linear 0s;
}


.box1 {
height: 500px;
background-color: #A9E5BB;

}

.box2 {
background-color: #FCF6B1;
}

.box3 {
background-color: #F7B32B;
}

.box4 {
background-color: #F72C25;
}

.box5 {
background-color: #2D1E2F;
}


@media screen and (min-width:900px){
.box{
width:33.33%;

}
.box1{
height: 200px;
width: 100%;
}
.box2{
height: 200px;
width: 100%;
}
.box3{
height: 200px;
width: 100%;
}
.box4{
height: 200px;
width: 100%;
}
.box5{
height: 200px;
width: 100%;
}

}
27 changes: 27 additions & 0 deletions Nitin Madhukar/mostlyfluid.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="mostlyfluid.css">
<title>New HTML document by Nitin Madhukar</title>

</head>

<body>

<div class="container">
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
<div class="box box5"></div>

</div>
</body>

</html>