CSS Starter skeleton
Here is a basic stylesheet skeleton. The first two sets of rules help make layout easier.
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: whitesmoke;
font-family: Georgia, Times, 'Times New Roman', serif;
}
h1 {
color: darkred;
}
a,
a:link,
a:visited {
color: darkred;
}
a:hover {
color: black;
}