19 lines
947 B
CSS
19 lines
947 B
CSS
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 */
|
|
);
|
|
}
|