Created
December 10, 2019 20:59
-
-
Save davidhartsough/1229b375865fbb11b5bdf2e1f3e80f7e to your computer and use it in GitHub Desktop.
FLORBEX CHARLENG!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>FLORXBEX</title> | |
<style> | |
html { | |
box-sizing: border-box; | |
} | |
*, | |
*:before, | |
*:after { | |
box-sizing: inherit; | |
} | |
html, | |
body { | |
height: 100%; | |
} | |
body { | |
margin: 0; | |
-webkit-text-size-adjust: 100%; | |
font-size: 1rem; | |
font-weight: 400; | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", | |
"Helvetica Neue", Arial, sans-serif; | |
background-color: #fafafa; | |
line-height: 1.5; | |
/* let's flex */ | |
display: flex; | |
flex-direction: column; | |
} | |
/* CHANGE THESE BELOW! */ | |
header { | |
background-color: rgba(250, 0, 0, 0.2); | |
} | |
nav { | |
background-color: rgba(250, 0, 0, 0.2); | |
padding: 1rem; | |
} | |
nav ul { | |
margin: 0; | |
padding: 0; | |
} | |
nav ul li { | |
list-style: none; | |
margin-left: 0.5rem; | |
} | |
h1 { | |
text-align: center; | |
padding: 0.5rem; | |
margin: 0; | |
} | |
main { | |
background-color: rgba(240, 240, 255, 0.2); | |
} | |
aside { | |
background-color: rgba(0, 250, 0, 0.2); | |
/* 25% */ | |
} | |
aside > div { | |
padding: 1rem; | |
} | |
.center { | |
background-color: rgba(80, 250, 0, 0.2); | |
} | |
.centered { | |
padding: 0.5rem; | |
background-color: rgba(0, 250, 0, 0.2); | |
} | |
section { | |
padding: 0.5rem; | |
background-color: rgba(0, 0, 250, 0.2); | |
} | |
.side { | |
/* 20% */ | |
padding: 0.5rem; | |
background-color: rgba(0, 250, 250, 0.1); | |
} | |
.item { | |
padding: 1rem; | |
margin-bottom: 0.5rem; | |
background-color: rgba(0, 250, 200, 0.2); | |
} | |
footer { | |
background-color: rgba(250, 100, 0, 0.2); | |
text-align: center; | |
padding: 1rem; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<div>logo</div> | |
<ul> | |
<li><a href="#">link</a></li> | |
<li><a href="#">link</a></li> | |
<li><a href="#">link</a></li> | |
<li><a href="#">link</a></li> | |
</ul> | |
</nav> | |
<h1>title</h1> | |
</header> | |
<main> | |
<aside> | |
<div>top</div> | |
<div class="center"><div class="centered">middle</div></div> | |
<div>bottom</div> | |
</aside> | |
<section> | |
section | |
</section> | |
<div class="side"> | |
<div class="item">item</div> | |
<div class="item">item</div> | |
<div class="item">item</div> | |
</div> | |
</main> | |
<footer>footer</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment