Timothy Farrell ba577a699c Use Arial instead of Lato.
I don't care to send evidence of all of my page requests to Google. Arial looks decent enough.
2018-06-02 11:39:56 -05:00

41 lines
654 B
CSS

@import '../node_modules/semantic-ui-reset/reset.css';
html {
overflow: hidden;
height: 100%;
}
body {
height: 100%;
overflow: auto;
display: flex;
flex-direction: column;
font-family: Arial, sans-serif;
}
/* http://tholman.com/github-corners/ */
.github-corner:hover .octo-arm{
animation:octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave{
0%,100% {
transform:rotate(0)
}
20%,60% {
transform:rotate(-25deg)
}
40%,80% {
transform:rotate(10deg)
}
}
@media (max-width:500px){
.github-corner:hover .octo-arm{
animation:none
}
.github-corner .octo-arm{
animation:octocat-wave 560ms ease-in-out
}
}