From: Alexander Goussas Date: Mon, 20 Apr 2026 01:04:44 +0000 (-0500) Subject: add images to site X-Git-Tag: v0.0.1~2 X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=043d211423360d1b686b22e6b62503d1c643d641;p=frustrated-functor.dev.git add images to site --- diff --git a/public/hornet.png b/public/hornet.png new file mode 100644 index 0000000..ba66fce Binary files /dev/null and b/public/hornet.png differ diff --git a/public/index.html b/public/index.html index 0fbc663..3300f9d 100644 --- a/public/index.html +++ b/public/index.html @@ -33,10 +33,12 @@

Alexander Goussas

Blog about programming and friends

+ + +

Posts

diff --git a/public/logo.png b/public/logo.png new file mode 100644 index 0000000..764882d Binary files /dev/null and b/public/logo.png differ diff --git a/public/styles.css b/public/styles.css index d4cd95b..b8ef458 100644 --- a/public/styles.css +++ b/public/styles.css @@ -24,10 +24,55 @@ a { } nav { + display: flex; + justify-content: center; ul { list-style: none; display: flex; - justify-content: space-between; + } +} + +#logo { + max-width: 169px; + position: fixed; + right: 10px; + top: 200px; + border: 2px lightgreen solid; + animation: 0.3s linear infinite alternate blink-green; +} + +#hornet { + max-width: 169px; + position: fixed; + top: 20px; + left: 10px; + border: 2px red solid; + animation: 0.3s linear infinite alternate blink-red; +} + +@keyframes blink-red { + from { + transform: scale(1); + box-shadow: none; + } + to { + transform: scale(0.99); + box-shadow: + rgba(255 0 0 / 80%) 3px 3px 8px, + rgba(255 0 0 / 80%) -3px -3px 8px; + } +} + +@keyframes blink-green { + from { + transform: scale(1); + box-shadow: none; + } + to { + transform: scale(0.99); + box-shadow: + rgba(0 255 0 / 80%) 3px 3px 8px, + rgba(0 255 0 / 80%) -3px -3px 8px; } }