Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaya242 authored Dec 23, 2023
1 parent 50991ae commit a1e3b50
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
Binary file added goal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mondrian Project</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>

<div class="container">
<div id="box1"></div>
<div id="box2"></div>
<div id="box3"></div>
<div id="box4"></div>
<div id="box5"></div>
<div id="box6"></div>
<div id="box7"></div>

</div>

</body>
</html>
51 changes: 51 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
.container{
display: grid;
grid-template-columns: 100px 300px 80px;
grid-template-rows: 300px 300px 150px 100px;
background-color: black;
height: 100%;
justify-content: center;

gap: 10px;
}

body{
display: flex;
justify-content: center;
align-items: center;
}

#box1{
background-color: #f9f9f9;
grid-area: 1/1/2/2;
}

#box2{
grid-area: 1/2/3/4;
background-color: #ff0101;
}

#box3{
background-color: #f9f9f9;
grid-area: 2/1/3/2;
}

#box4{
background-color: #0101fd;
grid-area: 3/1/5/2 ;
}

#box5{
background-color: #f9f9f9;
grid-area: 3/2/5/3;
}

#box6{
background-color: #0101fd;
grid-area: 3/3/4/4;
}

#box7{
background-color: #fff001;
grid-area: 4/3/5/4;
}

0 comments on commit a1e3b50

Please sign in to comment.