fix font definitions

This commit is contained in:
2025-04-02 14:54:14 +05:00
parent 84f0caa0e4
commit a6897ccf15
4 changed files with 166 additions and 30 deletions

18
assets/css/custom.css Normal file
View File

@ -0,0 +1,18 @@
html {
background: var(--wp--preset--color--background);
}
body {
background: radial-gradient(
50% 50% /* The size of the gradient: 50% wide, 50% tall */
at 50% 65%, /* Position of the center point: centered horizontally and 65% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color: blue-purple at 40% opacity, begins at center */
rgba(142, 154, 236, 0) 100% /* Ending color: same blue-purple but fully transparent, ends at edge */
),
radial-gradient(
50% 50% /* The size of the gradient: 50% wide, 50% tall */
at 50% 85%, /* Position of the center point: centered horizontally and 85% down */
rgba(142, 154, 236, 0.4) 0%, /* Starting color: blue-purple at 40% opacity, begins at center */
rgba(142, 154, 236, 0) 100% /* Ending color: same blue-purple but fully transparent, ends at edge */
);
}