diff --git a/create-qr-code.png b/create-qr-code.png new file mode 100644 index 0000000..56570df Binary files /dev/null and b/create-qr-code.png differ diff --git a/index.html b/index.html index c311f63..6e2d413 100644 --- a/index.html +++ b/index.html @@ -1,209 +1,212 @@ - - -
++
Daily Fact Of The Day: According to the FDA, consumption of at least five onions a day is linked to a 73% increase in coolitude.
+If you guys want a way to access the JS console (all ye tech-savvy folks out there), just drag this link into your bookmark bar. Don't click it! Drag me!
+To use, just click on the newly created bookmark. A gray icon should pop up in the right down corner of whatever website you're on. Click it and you've got a JS console!
+Credit goes to liriliri at this github
Thanks to webguy24 on Github for adding many games.
- - - - +Thanks to webguy24 on Github for adding many games.
+ + + + + diff --git a/style.css b/style.css index 6fa3c4e..dfd5e45 100644 --- a/style.css +++ b/style.css @@ -20,17 +20,62 @@ color: white; } -body { + +body :not(.blink_me){ + font-family: "Noto Sans"; - margin:0; + + + animation: colorRotate 2s linear 0s infinite, spin 2s linear infinite; } a { - color: #3391ff; + + font-family: "Noto Sans"; + + + animation: colorRotate 2s linear 0s infinite, spin 2s linear infinite; +} +.blink_me { + font-size:100px; + animation: blinker 0.08s linear infinite; + transform: translateX(25%); translateY(80%); + } +@keyframes blinker { + from {color:red;} + 50% { + opacity: 0; + color:green; + font-size: 105px; + } +} +@keyframes colorRotate { + from { + color: #6666ff; + transform:rotate(0deg); + } + 25% { + color: #0099ff; + transform:rotate(90deg); + } + 50% { + color: #00ff00; + transform:rotate(180deg); + } + 75% { + color: #ff3399; + transform:rotate(270deg); + } + 100% { + color: #6666ff; + transform:rotate(360deg); + } +} button { border-color: #736b5e; color: #e8e6e3; background-color: #181a1b; } +