Archived
1
0
This commit is contained in:
Jeff Becker 2017-04-19 09:04:22 -04:00
parent 40d588f5a4
commit 8c9720f6c5
2 changed files with 14 additions and 1 deletions

View File

@ -344,3 +344,16 @@
footer { footer {
text-align: center; text-align: center;
} }
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#logo:hover {
animation-name: rotate;
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

View File

@ -16,7 +16,7 @@
</head> </head>
<body> <body>
<center> <center>
<img src="{{prefix}}static/changolia-logo.png" /> <img id="logo" src="{{prefix}}static/changolia-logo.png" />
<h1><a href="{{prefix}}o/">enter</a></h1> <h1><a href="{{prefix}}o/">enter</a></h1>
</center> </center>
<hr/> <hr/>