erynwells.me/root/styles/home.css

44 lines
591 B
CSS
Raw Normal View History

@import url(./main.css);
2015-01-09 08:09:29 -08:00
body {
/* Flex box: center everything vertically */
align-items: center;
}
.wrapper {
2015-01-09 08:09:29 -08:00
margin-top: 120px;
padding: 60px 0 8px 0;
2015-01-09 08:09:29 -08:00
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.wrapper {
2015-01-09 08:09:29 -08:00
width: 640px;
text-align: center;
2015-01-09 08:09:29 -08:00
}
header {
margin-bottom: 60px;
2015-01-09 08:09:29 -08:00
}
footer {
margin: 0;
padding: 0;
2015-01-09 08:09:29 -08:00
}
.nav {
2015-01-09 08:09:29 -08:00
text-align: center;
}
.nav a {
2015-01-09 08:09:29 -08:00
color: #aaa;
font-weight: 200;
margin-right: 0.75em;
-webkit-transition: color 100ms;
transition: color 100ms;
2015-01-09 08:09:29 -08:00
}
.nav a:hover {
color: #3486ff;
2015-01-09 08:09:29 -08:00
}