summaryrefslogtreecommitdiff
path: root/konami/css/main.css
diff options
context:
space:
mode:
authors1nical <[email protected]>2019-08-11 17:21:35 -0700
committers1nical <[email protected]>2019-08-11 17:21:35 -0700
commit996634e14f343cdbb5bb62c98012a5522baedf3e (patch)
tree219c8b6461104d031872b12d9f01f97b0f14139b /konami/css/main.css
parentfix various formatting issues (diff)
downloads1n.pw-admin-996634e14f343cdbb5bb62c98012a5522baedf3e.tar.xz
s1n.pw-admin-996634e14f343cdbb5bb62c98012a5522baedf3e.zip
added easter eggs
- fixed formatting issue - added bttf - console log codes - easter egg pack
Diffstat (limited to 'konami/css/main.css')
-rw-r--r--konami/css/main.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/konami/css/main.css b/konami/css/main.css
index fb6298e..8e34ca6 100644
--- a/konami/css/main.css
+++ b/konami/css/main.css
@@ -210,3 +210,50 @@ main {
border-right: 0.08em solid #222;
}
}
+
+/* BIFF, MARTY, EMMETT, GOLDIE */
+.eggsfound {
+ background: red;
+ color: white;
+ font-weight: bold;
+ opacity: 0;
+ left: 50%;
+ position: fixed;
+ top: 0;
+ width: 300px;
+ margin-left: -150px;
+ z-index: -300;
+ transition: opacity 0.5s ease;
+ padding: 10px;
+ text-align: center;
+}
+
+.eggsfound.animate {
+ opacity: 1;
+ z-index: 999;
+}
+
+img.marty,
+img.docbrown,
+img.biff,
+img.goldie {
+ bottom: -376px;
+ position: fixed;
+ right: 0;
+ transition: bottom 0.3s ease;
+ z-index: 9999;
+}
+
+.marty-show img.marty,
+.docbrown-show img.docbrown,
+.biff-show img.biff,
+.goldie-show img.goldie {
+ bottom: 0;
+}
+
+p {
+ text-align: center;
+ font-weight: bold;
+ margin: 50vh 0 0 0;
+ font-family: sans-serif;
+} \ No newline at end of file