more css
This commit is contained in:
parent
40d588f5a4
commit
8c9720f6c5
@ -344,3 +344,16 @@
|
||||
footer {
|
||||
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;
|
||||
}
|
||||
|
@ -16,7 +16,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
</center>
|
||||
<hr/>
|
||||
|
Reference in New Issue
Block a user