File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ mixedFonts:
9494
9595 --popup_Background_Color : # 464599da ;
9696
97+ --backgroundBlur : 10px ;
98+
9799 /* # - - Images: */
98100 --image_margin : 1% ;
99101 --image_padding : 1% ;
@@ -102,6 +104,7 @@ mixedFonts:
102104 --image_rounding : 1rem ;
103105
104106 /* Border: */
107+ --bodyPadding : 20px ;
105108
106109 /* Border-Radius: */
107110 --borderRadius : 1.5rem ;
@@ -178,8 +181,12 @@ body {
178181 animation : shiftBackground 1.5s linear infinite;
179182 animation-fill-mode : both;
180183
181- /* Blur Effect for Background of ROOT: */
182- backdrop-filter : blur (10px );
184+ /* # - - Blur Effect for Background of ROOT: */
185+ backdrop-filter : blur (var (--backgroundBlur ));
186+
187+ /* # - - - Reversing "margin" on *-body and applying padding to blur fully to the corners. */
188+ margin : 0% ;
189+ padding : var (--bodyPadding );
183190}
184191
185192/* Animation for the Background-Rain. (px of Image so it is smoot from one Position to the other): */
@@ -251,8 +258,8 @@ body > *:not(
251258 .speechBubble )
252259{
253260 position : relative;
254- padding : 20 px ;
255- margin : 20 px ;
261+ padding : var ( --bodyPadding ) ;
262+ margin : var ( --bodyPadding ) ;
256263
257264 clip-path : var (--borderPath );
258265 background-color : var (--border_color );
You can’t perform that action at this time.
0 commit comments