temp: debug statements for testing

Co-authored-by: Isaac <contact@eartharoid.me>
Co-authored-by: David Ralph <me@davidcralph.co.uk>
This commit is contained in:
alexsparkes
2024-05-21 23:31:38 +01:00
parent 90aa4f46d8
commit 87f3024442
28 changed files with 419 additions and 189 deletions

View File

@@ -97,7 +97,7 @@ $themes: (
box-shadow: t($boxShadow);
}
-webkit-backdrop-filter: blur(map.get($ui-elements, 'backgroundBlur'));
backdrop-filter: blur(map.get($ui-elements, 'backgroundBlur'));
backdrop-filter: blur(map.get($ui-elements, 'backgroundBlur'));
.title {

View File

@@ -5,8 +5,8 @@ body {
background: #000;
margin: 0;
overflow: hidden;
text-rendering: optimizeLegibility !important;
-moz-text-rendering: optimizeLegibility !important;
text-rendering: optimizelegibility !important;
-moz-text-rendering: optimizelegibility !important;
}
* {
@@ -33,7 +33,6 @@ body {
justify-content: center;
align-items: center;
gap: 20px;
animation: fadeIn 1s;
}
@@ -208,13 +207,15 @@ body {
.pulse {
height: 100%;
width: 100%;
background: linear-gradient(-90deg, #efefef 0%, #cccccc 50%, #efefef 100%);
background: linear-gradient(-90deg, #efefef 0%, #ccc 50%, #efefef 100%);
background-size: 400% 400%;
animation: pulse 1.2s ease-in-out infinite;
@keyframes pulse {
0% {
background-position: 0% 0%;
}
100% {
background-position: -135% 0%;
}
@@ -226,13 +227,15 @@ body {
.pulse {
height: 100%;
width: 100%;
background: linear-gradient(-90deg, #000000 0%, rgb(83, 83, 83) 50%, #000000 100%);
background: linear-gradient(-90deg, #000 0%, rgb(83 83 83) 50%, #000 100%);
background-size: 400% 400%;
animation: pulse 1.2s ease-in-out infinite;
@keyframes pulse {
0% {
background-position: 0% 0%;
}
100% {
background-position: -135% 0%;
}