You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
665 B
CSS

table.menu {
margin: 0;
width: 100%;
}
td.menu {
padding: 5px;
border-radius: 5px;
}
@keyframes menu-loading {
0% { background: #6fa; }
50% { background: #afa; }
100% { background: #6fa; }
}
td.menu-loading {
animation-name: menu-loading;
animation-duration: 0.7s;
}
td.menu-selected {
background: #aaf;
}
@keyframes menu-hover {
from { background: #66f; }
to { background: #aaf; }
}
td.menu:hover {
animation-name: menu-hover;
animation-timing-function: ease-out;
animation-duration: 0.7s;
animation-fill-mode: forwards;
}
a.menu {
text-decoration: none;
color: #44f;
font-family: Arial;
font-size: 20px;
}