summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorAnthony Wang2024-01-29 02:56:06 -0500
committerAnthony Wang2024-01-29 02:56:06 -0500
commitd2ecf019b33e607e5f85d10bb2be0b1bcf3daa14 (patch)
tree8b70d1c313777552114591d74e35be36e11a620c /style.css
parentbf7131f7b2b529ab591235d738e98cf1f90ab864 (diff)
EXPANDING CIRCLES YAY
Diffstat (limited to 'style.css')
-rw-r--r--style.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/style.css b/style.css
index fe2652d..9a92d18 100644
--- a/style.css
+++ b/style.css
@@ -4,6 +4,8 @@ body {
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
+ overflow-y: hidden;
+ overflow-x: hidden;
touch-action: manipulation;
}
@@ -43,3 +45,10 @@ svg {
animation: color 10s infinite linear;
position: absolute;
}
+
+div {
+ position: absolute;
+ border-radius: 50%;
+ background-color: #007bff;
+ transition: transform 1000ms ease-in-out, opacity 1000ms ease-in-out;
+}