You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
644 B

/*
Keyword colors can be found at http://colours.neilorangepeel.com/
*/
/* border-box fix */
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
padding: 0;
margin: 0;
}
h1, h2 {
text-transform: uppercase;
}
/* Add padding to all of the .container child elements */
.container > * {
padding: 20px;
}
.container {
color: white;
font-family: helvetica, arial, sans-serif;
}
header {
background: skyblue;
}
main {
background: slategray;
}
nav {
background: cadetblue;
}
aside {
background: seagreen;
}
footer {
background: darkslateblue;
3 months ago
}