ui tweaks

This commit is contained in:
Nate Goldman
2016-03-07 13:05:04 -08:00
parent 5f0c8e86ad
commit 98eef0819b

View File

@@ -38,20 +38,32 @@ body {
font-size: 42px;
display: block;
text-align: center;
animation: spin 2s infinite linear;
animation: spin-ccw 2s infinite linear;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
to { transform: rotate(360deg); }
}
@keyframes spin-ccw {
from { transform: rotate(360deg); }
to { transform: rotate(0deg); }
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.app {
-webkit-user-select: none;
-webkit-app-region: drag;
height: 100%;
display: flex;
flex-flow: column;
animation: fadein 1s;
}
/*
@@ -252,6 +264,7 @@ body.drag::before {
background-position: 0 50%;
transition: all 0.1s ease-out;
position: relative;
animation: fadein .4s;
}
.torrent:not(:last-child) {