From 02c93f3f195ae0addaa71caeec3f398dae978ee5 Mon Sep 17 00:00:00 2001 From: Cesar Delgado Date: Fri, 5 Jan 2024 09:14:27 +0000 Subject: [PATCH] Update style.css --- style.css | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/style.css b/style.css index b1e46a0..df397e9 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,15 @@ -html, body { - height: 100%; - margin: 0; - padding: 0; +* { + box-sizing: border-box; + margin:0; + padding:0; +} +html { + height: 100vh; + height:100dvh; + } +body { + min-height: 100%; } #main-container { @@ -38,17 +45,3 @@ html, body { justify-content: center; align-items: center; } - - .flash { - opacity: 1; - transition: opacity 0.5s; - } - - .flash:hover { - animation: flash-animation 1s infinite; - } - - @keyframes flash-animation { - 0%, 50%, 100% { opacity: 1; } - 25%, 75% { opacity: 0; } - } \ No newline at end of file