erynwells.me/root/styles/home.css

31 lines
393 B
CSS
Raw Normal View History

@import url(./main.css);
2015-01-09 08:09:29 -08:00
html, body {
height: 100%;
2015-01-09 08:09:29 -08:00
}
body {
/* Flex box: center everything vertically */
align-items: center;
2015-01-09 08:09:29 -08:00
}
.wrapper {
text-align: center;
2015-01-09 08:09:29 -08:00
}
2017-05-23 10:53:56 -07:00
nav {
2015-01-09 08:09:29 -08:00
text-align: center;
}
2017-05-23 10:53:56 -07:00
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
}
2017-05-23 10:53:56 -07:00
nav a:hover {
color: #3486ff;
2015-01-09 08:09:29 -08:00
}