Skip to content

Instantly share code, notes, and snippets.

@winnab
Created April 26, 2015 12:57
Show Gist options
  • Save winnab/2ccec5d25e312ad4ace9 to your computer and use it in GitHub Desktop.
Save winnab/2ccec5d25e312ad4ace9 to your computer and use it in GitHub Desktop.
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.group:after {
content: "";
display: table;
clear: both;
}
.group div,
.group aside {
display: inline-block;
float: left;
}
.group aside {
padding-left: 20px;
}
.group p {
width: 448px;
}
body {
font-family: Arial, sans-serif;
font-size: 18px;
margin: 0;
}
header {
background: thistle;
padding: 20px 10px;
}
header h1,
section{
width: 75%;
margin: 0 auto;
}
img {
width: 400px;
}
ul {
list-style-type: none;
padding-left: 0px;
}
ul li {
margin: 3px 0;
}
.hide {
display: none;
}
.ticked {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment