commit ad33bdaa532190a49dd0170691b7a8c50cadfb3f Author: Rosia E Evans Date: Sun Apr 20 16:49:58 2025 +0100 inital diff --git a/header.gif b/header.gif new file mode 100644 index 0000000..0d3f929 Binary files /dev/null and b/header.gif differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..ac4c4e9 --- /dev/null +++ b/index.html @@ -0,0 +1,68 @@ + + + + + + + +

+F +O +S +D +E +M +_ +D +R +E +A +M +S +

+ +
+A number of friends have come to me over the last 3 years telling me of stress dreams +about fosdem, drawing more numerous as the event grows closer. Could these be important? What could we learn +from these dreams? For sciences sake I've started logging them here. +
+
+If you have a dream to report, email me +
+ +
+
+I was in the airport, going towards security. As I started to reach it I realised I was +carrying a knife in my jacket. I pulled it out and threw it away, but found my jacket contained infinite +knives. I grew closer to the security terminal as I continued to frantically remove knives from my personage. +
+
+Don't bring the infinite knife jacket to fosdem if you're coming by plane +
+
+ +
+
+I'd gotten on the plane to fosdem with the group I was going with. As the plane was in the air, half of +its body was ripped off and numerous of my friends fell out into the sky. I was stood on the other side, +watching, horrified. I realised I hadn't got travel insurance and then spent the rest of the plane journey +worrying about this. +
+
+Get travel insurance if you're coming from a different country +
+
+ +
+
+I was at fosdem, except it was an empty warehouse. There was an escape room and my friends kept +getting killed and turned into ghosts. This was fine as I knew I could turn them back if I won +the escape room. As ghosts they really liked the taste of salt. +
+
+If your friends turn into ghosts at fosdem, this is okay. +
+
+ + + diff --git a/space.jpg b/space.jpg new file mode 100644 index 0000000..63d38aa Binary files /dev/null and b/space.jpg differ diff --git a/space2.jpg b/space2.jpg new file mode 100644 index 0000000..8ea8462 Binary files /dev/null and b/space2.jpg differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..7eaed3b --- /dev/null +++ b/style.css @@ -0,0 +1,84 @@ +body{ + background-image: url(space2.jpg); + font-family: Verdana, sans-serif; + color: white; + margin: 0 10vw 0 10vw; +} + +a, a:visited{ + color: white; +} + +h1{ + text-align: center; + color: white; +} + +header{ + margin-bottom: 40px; + background-color: #00000099; + padding: 5px; + border-radius: 3px; +} + +section{ + margin: 0 5vw 0 5vw; + margin-top: 20px; +} +section .story{ + border-top: solid white 2px; + border-bottom: solid white 2px; + padding: 4px; + + background-color: #00000099; + padding: 5px; + border-radius: 3px; +} +section .lesson{ + margin-top: 5px; + padding: 4px; + + background-color: #00000099; + padding: 5px; +} +section .lesson:before{ + content: "Lesson:"; + /* border-right: solid white 2px; */ +} + + + + +/* thank you CodeLab 🙏 +https://www.youtube.com/watch?v=CI-vuBp_hJY +*/ + +.wavy-text span{ + display: inline-block; + animation: wave 2s ease-in-out infinite; +} + +.wavy-text span:nth-child(1n){ + animation-delay: 0s; +} + +.wavy-text span:nth-child(2n){ + animation-delay: 0.2s; +} + +.wavy-text span:nth-child(3n){ + animation-delay: 0.4s; +} + +.wavy-text span:nth-child(4n){ + animation-delay: 0.2s; +} + +@keyframes wave{ + 0%, 100%{ + transform: translateY(0); + } + 50%{ + transform: translateY(-20px); + } +}