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
Empty file removed css/style.css
Empty file.
132 changes: 132 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
body, html {
/* position: absolute;*/
/* width: 100%;
height: 100vh;*/
}
p {
margin-top: 0px;
}
* {
box-sizing: border-box;
}
h1{
padding: 1%;
}
.border {
width: 100%;
height: 100vh;
margin: auto;
}
.container {
position: relative;
margin: 1% 12% 4% 12%;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.seccion-1 {
width: 100%;
height: 25vh;
padding: 0% 0% 2% 0%;
display: flex;
flex-direction: row;
justify-content: space-between;
float: left;
}

.box {
width: 70%;
height: 100%;
background-color: blue;
/* align-self: flex-start;*/
}
.text {
width: 25%;
height: 100%;
/* display: flex;
flex-basis: auto;*/
}
.seccion-2 {
width: 100%;
height: 21vh;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
padding: 0% 0% 1% 0%;
}

.wrap {
display: flex;
flex-direction: column;
width: 22%;
height: 100%;
justify-content: space-between;
}

.gray {
height: 25%;
background: #DCDCDC;
}

.blue {
height: 60%;
background: #13b4ff;
}

.dark-blue {
height: 60%;
background: #4169E1;
}

.purple {
height: 60%;
background: #ab3fdd;
}

.orange {
height: 60%;
background: #FFA500;
}


.seccion-3 {
width: 100%;
height: 31vh;
display: flex;
flex-direction: row;
justify-content: space-between;
}


.bundle {
width: 25%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;

}

.red {
height: 50%;
background: red;
}

.yellow {
height: 50%;
background: yellow;
}

.green {
height: 50%;
background: green;
}

.double-gray {
height: 15%;
background: #DCDCDC;
}


75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/styles.css">
<!-- <script type="text/javascript" src="js/jquery.js"></script> -->
<!-- <script type="text/javascript" src="js/resize.js"></script> -->
<title>Page Title</title>
</head>

<body>

<div class="border">
<h1>AINULINDALE</h1>

<div class="container">
<div class=" seccion-1">
<div class="box">
</div>
<div class="text">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam varius eleifend metus at auctor. Integer iaculis nulla quis elit posuere hendrerit. Aliquam eget sagittis ipsum.</p>
</div>
</div>
<div class="seccion-2">
<div class="wrap">
<div class="blue"> </div>
<div class="gray"></div>
</div>

<div class="wrap">
<div class="dark-blue"> </div>
<div class="gray"></div>
</div>

<div class="wrap">
<div class="purple"> </div>
<div class="gray"></div>
</div>

<div class="wrap">
<div class="orange"> </div>
<div class="gray"></div>
</div>

</div>


<div class="seccion-3">

<div class="bundle">
<div class="red"> </div>
<div class="double-gray"></div>
<div class="double-gray"></div>
</div>

<div class="bundle">
<div class="yellow"> </div>
<div class="double-gray"></div>
<div class="double-gray"></div>
</div>

<div class="bundle">
<div class="green"> </div>
<div class="double-gray"></div>
<div class="double-gray"></div>
</div>

</div>

</div>
</div>

<p onlick="$(this).hide();">This is a green</p>
<script type="text/javascript" src="js/jquery.js"></script>
</body>
</html>
2 changes: 2 additions & 0 deletions js/jquery.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions js/resize.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// $(#paragraph).click(function(){
// $('#paragraph').hide();
// });