From ac16e0b2c22b572da5848833062fcf72a0ac2aad Mon Sep 17 00:00:00 2001 From: Lukas Vallejo Meluk Date: Fri, 17 Jan 2025 19:17:45 +0100 Subject: [PATCH] =?UTF-8?q?Ajuste=20estilos=20y=20par=C3=A1metros=20index.?= =?UTF-8?q?html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/front/index.html | 224 +++++++++++++++++++++++++++++++----------- 1 file changed, 165 insertions(+), 59 deletions(-) diff --git a/test/front/index.html b/test/front/index.html index 25c70d2..4088931 100644 --- a/test/front/index.html +++ b/test/front/index.html @@ -5,84 +5,190 @@ Interactuar con el Contrato - - - - -

DATOS DEL ACUERDO

- - - -

- - -

- - -

+ .container { + max-width: 800px; + margin: 50px auto; + padding: 20px; + background: #fff; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + border-radius: 10px; + } - -

+ h3 { + text-align: center; + color: black; + margin-bottom: 30px; + } - -

+ .grid-container { + display: grid; + grid-template-columns: 1fr; + gap: 20px; + } - -

+ @media (min-width: 768px) { + .grid-container { + grid-template-columns: 1fr 1fr; + } + } - -

+ label { + font-weight: bold; + display: block; + margin-bottom: 5px; + color: #555; + } - -

+ input[type="text"], + input[type="date"], + input[type="number"] { + width: 100%; + padding: 10px; + margin-bottom: 10px; + border: 1px solid #ddd; + border-radius: 5px; + box-sizing: border-box; + font-size: 16px; + } - -

+ input:read-only { + background-color: #e9ecef; + } - -

+ button { + padding: 10px 20px; + background-color: #28a745; + border: none; + color: #fff; + border-radius: 5px; + font-size: 16px; + cursor: pointer; + margin-right: 10px; + } - - + button:hover { + background-color: #218838; + } -


+ button:active { + background-color: #1e7e34; + } - - -

- - + .buttons { + text-align: center; + } -


+ footer { + text-align: center; + margin-top: 20px; + font-size: 0.85em; + color: #777; + } + + -

-

- + +
+

Datos del Acuerdo

+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
+ + + + +
+
+ + +
+ + + +
+
+ + - + \ No newline at end of file