Skip to content

Commit e99f80a

Browse files
committed
Update styles.css
1 parent c46ea04 commit e99f80a

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

Assets/styles.css

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff 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: 20px;
255-
margin: 20px;
261+
padding: var(--bodyPadding);
262+
margin: var(--bodyPadding);
256263

257264
clip-path: var(--borderPath);
258265
background-color: var(--border_color);

0 commit comments

Comments
 (0)