Merge branch 'main' of https://github.com/kennethnym/infinifi into kennethnym-main

This commit is contained in:
Hegyi Áron Ferenc
2024-07-23 20:02:29 +02:00
15 changed files with 52 additions and 3 deletions

View File

@@ -36,6 +36,13 @@ body {
background-color: var(--base);
overflow: hidden;
}
@media (min-width: 768px) {
body {
width: calc(100% - 8rem - 2px);
height: calc(100vh - 10rem - 2px);
padding: 4rem;
}
}
h1,
h2,
@@ -66,6 +73,11 @@ footer {
align-items: center;
justify-content: center;
}
@media (min-width: 768px) {
footer {
padding: 2rem 0;
}
}
footer > span {
color: var(--text);
@@ -245,12 +257,14 @@ input[type="range"]::-ms-fill-upper {
}
}
.button.button-active,
.button:active {
background: var(--text) !important;
color: var(--base);
transform: translate(4px, 4px);
}
.button.button-active::after,
.button:active::after {
content: none;
}