diff --git a/index.css b/index.css index 8d29adc..166a84b 100644 --- a/index.css +++ b/index.css @@ -1,3 +1,4 @@ +@charset "UTF-8"; body { background: black !important; } @@ -213,4 +214,59 @@ body { transform: skewX(5deg); box-shadow: 0 0 10px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.5), 0 0 60px rgba(255, 165, 0, 0.5), 0 0 80px rgba(255, 165, 0, 0.5); } +} +#balloon-container { + height: 100vh; + padding: 1em; + box-sizing: border-box; + display: flex; + flex-wrap: wrap; + overflow: hidden; + transition: opacity 500ms; + position: fixed; + top: 0; +} + +.balloon { + height: 125px; + width: 105px; + border-radius: 75% 75% 70% 70%; + position: relative; +} + +.balloon:before { + content: ""; + height: 75px; + width: 1px; + padding: 1px; + background-color: #FDFD96; + display: block; + position: absolute; + top: 125px; + left: 0; + right: 0; + margin: auto; +} + +.balloon:after { + content: "▲"; + text-align: center; + display: block; + position: absolute; + color: inherit; + top: 120px; + left: 0; + right: 0; + margin: auto; +} + +@keyframes float { + from { + transform: translateY(100vh); + opacity: 1; + } + to { + transform: translateY(-300vh); + opacity: 0; + } } \ No newline at end of file diff --git a/index.php b/index.php index 27ab4b4..4c70284 100644 --- a/index.php +++ b/index.php @@ -11,6 +11,8 @@