This commit is contained in:
phil
2025-11-06 20:55:28 +01:00
parent 34700fe504
commit 3361390d59
12 changed files with 41 additions and 0 deletions

27
flame-calvin/flame.css Executable file
View File

@@ -0,0 +1,27 @@
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: inherit;
filter: blur(8px) brightness(0.3);
z-index: -1;
}
body {
--color-background: #242b33;
--color-primary: #effbff;
--color-accent: #6ee2ff;
--spacing-ui: 10px;
background-color: var(--color-background);
background-image: url("https://images.alphacoders.com/134/thumb-1920-1342318.jpeg");
background-repeat: no-repeat;
background-size: fill;
font-family: Roboto,sans-serif;
font-size: 14px;
transition: background-color .3s;
}