mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
Daniel Mason
1c865a6784
- Add MBID/Spotify Autolinking if track exists - Add Genre table + .go files
67 lines
996 B
CSS
67 lines
996 B
CSS
html, body {
|
|
background-color: #282c34;
|
|
}
|
|
|
|
.App {
|
|
text-align: center;
|
|
}
|
|
|
|
.App-logo {
|
|
height: 40vmin;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
.App-logo {
|
|
animation: App-logo-spin infinite 0.5s linear;
|
|
}
|
|
}
|
|
|
|
.toastNotifs {
|
|
margin-top: 100px;
|
|
z-index: 99999!important;
|
|
}
|
|
|
|
.App-header {
|
|
background-color: #282c34;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: calc(10px + 2vmin);
|
|
color: white;
|
|
}
|
|
|
|
.pageWrapper {
|
|
background-color: #282c34;
|
|
padding: 100px 15px 0 15px;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-size: calc(10px + 2vmin);
|
|
color: white;
|
|
}
|
|
|
|
.pageBody {
|
|
padding: 20px 5px 5px 5px;
|
|
font-size: 16pt;
|
|
}
|
|
|
|
.App-link {
|
|
color: #61dafb;
|
|
}
|
|
|
|
@keyframes App-logo-spin {
|
|
0% {
|
|
transform: scale(1,1);
|
|
}
|
|
50% {
|
|
transform: scale(1.05,1.05);
|
|
}
|
|
100% {
|
|
transform: scale(1,1);
|
|
}
|
|
}
|