From 97f9b197b0889f9fd7d1ceb24d4e295bc52e8a05 Mon Sep 17 00:00:00 2001 From: Francisco P Date: Tue, 27 Apr 2021 21:03:41 -0300 Subject: [PATCH] CSS terminado --- backEnd.php | 6 ++++++ index.html | 14 ++++++++------ styles.css | 22 ++++++++++++++++++++++ 3 files changed, 36 insertions(+), 6 deletions(-) diff --git a/backEnd.php b/backEnd.php index d6ede6f..82515d8 100644 --- a/backEnd.php +++ b/backEnd.php @@ -2,4 +2,10 @@ echo print_r($_POST); +if (!isset($_POST['sumbit'])) { + header ('Location: index.html'); +}; + +$name = $_POST; + ?> \ No newline at end of file diff --git a/index.html b/index.html index ebe5753..24c8b93 100644 --- a/index.html +++ b/index.html @@ -8,11 +8,13 @@ -
- - - - -
+
+
+ + + + +
+
\ No newline at end of file diff --git a/styles.css b/styles.css index fb69e40..846befa 100644 --- a/styles.css +++ b/styles.css @@ -5,6 +5,7 @@ width: 400px; height: auto; margin: auto; + margin-top: 30px; } .name { @@ -12,6 +13,8 @@ background-color: #0e93ff99; border: 1px solid #0e93ff; height: 30px; + font-family: Arial, Helvetica, sans-serif; + font-size: 14pt; } .email { @@ -19,14 +22,33 @@ background-color: #fffb0e99; border: 1px solid #c7c400; height: 30px; + font-family: Arial, Helvetica, sans-serif; + font-size: 14pt; + margin-top: 2px; + color:#4d5761 } .message { grid-column: 1/3; background-color: #ff0e0e99; border: 1px solid #ff0e0e; + font-family: Arial, Helvetica, sans-serif; + font-size: 14pt; + margin-top: 2px; + resize: none; } .submit { grid-column: 1/3; + height: 30px; + font-family: Arial, Helvetica, sans-serif; + font-size: 14pt; + background-color: #a6b5c2; + border: 1px solid #0000001c; + margin-top: 2px; + color: #0000007a; } + +body { + background-color: #0e93ff50; +} \ No newline at end of file