summaryrefslogtreecommitdiff
path: root/britons.css
diff options
context:
space:
mode:
Diffstat (limited to 'britons.css')
-rw-r--r--britons.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/britons.css b/britons.css
index b64e713..bb4b44f 100644
--- a/britons.css
+++ b/britons.css
@@ -75,3 +75,32 @@ header i {
opacity: 1;
}
+.eu {
+ position: fixed;
+ bottom: 70%;
+ left: 80%;
+ opacity: 1;
+ z-index: -1;
+ scale: 0.25;
+ width: 25%;
+}
+
+.stars {
+ position: fixed;
+ bottom: 70%;
+ left: 80%;
+ opacity: 1;
+ z-index: -1;
+ scale: 0.25;
+ width: 25%;
+}
+
+.stars:hover {
+ animation: spin 5s linear infinite;
+}
+
+
+@keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+}