From d0677a3bc8af45e9b19fcf78ecf8329c1a732fe9 Mon Sep 17 00:00:00 2001 From: ANIKO4 Date: Tue, 16 Sep 2025 23:12:24 -0300 Subject: [PATCH] index.html Agrego transiciones y cambios de color en Landing Page --- index.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..a015e8b --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ +/* Transiciones de ejemplo */ +.btn-primary { + background-color: #3498db; + color: white; + padding: 10px 20px; + border-radius: 8px; + transition: background-color 0.3s ease, transform 0.3s ease; +} + +.btn-primary:hover { + background-color: #2980b9; + transform: scale(1.05); +}