diff --git a/src/app/new-hotel/new-hotel.component.html b/src/app/new-hotel/new-hotel.component.html
index 382fdde..43f0369 100644
--- a/src/app/new-hotel/new-hotel.component.html
+++ b/src/app/new-hotel/new-hotel.component.html
@@ -2,25 +2,25 @@
diff --git a/src/index.html b/src/index.html
index 3d91cf2..639aa9b 100644
--- a/src/index.html
+++ b/src/index.html
@@ -8,7 +8,7 @@
-
+
diff --git a/src/styles.css b/src/styles.css
index 2adbbf3..cea93df 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -6,3 +6,19 @@
.button {
@apply border-black rounded px-3 py-1 border-[3px];
}
+
+.input-field {
+ @apply border-red-500 text-3xl rounded-full bg-gray-500 font-bold p-3 m-3 border-8
+}
+
+.back-button {
+ @apply border-black rounded bg-blue-500 border-[30px] m-3 text-3xl font-bold p-3
+}
+
+.submit-button {
+ @apply border-black rounded-full bg-green-500 border-[30px] m-3 text-3xl font-bold p-3
+}
+
+.delete-button {
+ @apply border-black rounded bg-red-500 border-[30px] m-3 text-3xl font-bold p-3
+}
diff --git a/tailwind.config.js b/tailwind.config.js
index 068e770..53ccdac 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -10,7 +10,17 @@ module.exports = {
extend: {
colors: {
...colors,
- }
+ },
+ keyframes: {
+ shake: {
+ '0%, 100%': { transform: 'translateX(0)' },
+ '25%': { transform: 'translateX(-30px)' },
+ '75%': { transform: 'translateX(30px)' },
+ },
+ },
+ animation: {
+ shake: 'shake 0.2s ease-in-out infinite',
+ },
},
},
plugins: [],