mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
69 lines
1.0 KiB
CSS
69 lines
1.0 KiB
CSS
html, body {
|
|
background-color: #282c34;
|
|
/** WHY DOES THIS DEFAULT TO 1.5 */
|
|
line-height: 1.3!important;
|
|
}
|
|
|
|
.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: 90px 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);
|
|
}
|
|
}
|