css background radial gradient

This commit is contained in:
YK 2025-09-12 07:44:54 +03:00
parent 4d07d0b429
commit ee0e2e3df9

View File

@ -1,6 +1,9 @@
@use 'mixins'; @use 'mixins';
@use 'reset'; @use 'reset';
html {
background: black;
}
body { body {
font-size: 1.22em; font-size: 1.22em;
display: flex; display: flex;
@ -8,6 +11,8 @@ body {
align-items: center; align-items: center;
background: black; background: black;
color: white; color: white;
background: radial-gradient(ellipse at 00% 100%, rgba(48, 25, 25, 0.3) 0%, rgba(52, 8, 8, 0.4) 35%, rgba(0, 0, 0, 0.4) 100%);
@include mixins.text; @include mixins.text;
} }