diff --git a/README.md b/README.md index 3fcd12a..dffa9dd 100755 --- a/README.md +++ b/README.md @@ -1,8 +1,5 @@ # Amadeus Hotel Booking -![](screenshots/amadeus-hotel-booking-django-2.png) -![](screenshots/amadeus-hotel-booking-django.png) - With the Hotel Booking API you are able to integrate booking capabilities directly in your application. In this prototype we demonstrate the end-to-end booking process with the following flow: - Find all available hotels in a given city or location using [Hotel List API](https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-search/api-reference) diff --git a/amadeus_demo_api/demo/static/demo/style.css b/amadeus_demo_api/demo/static/demo/style.css index 94bf0e5..596f197 100755 --- a/amadeus_demo_api/demo/static/demo/style.css +++ b/amadeus_demo_api/demo/static/demo/style.css @@ -155,3 +155,32 @@ hr.newstyle { .ui-menu .ui-menu-item:hover { background-color: darkgrey; } + +.svg-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: -1; /* Send SVG to the background */ + overflow: hidden; + background-color: #C5D5F9; + +} +.form-container { + background-color: white; + padding: 30px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + width: 80%; + max-width: 700px; + margin: 20px auto; + position: relative; /* Keeps it above the SVG */ +} +.center-content { + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + position: relative; /* Keeps the content positioned correctly */ +} \ No newline at end of file diff --git a/amadeus_demo_api/demo/templates/demo/demo_form.html b/amadeus_demo_api/demo/templates/demo/demo_form.html index c3e3bdb..543feae 100755 --- a/amadeus_demo_api/demo/templates/demo/demo_form.html +++ b/amadeus_demo_api/demo/templates/demo/demo_form.html @@ -7,6 +7,7 @@ + - + + diff --git a/screenshots/amadeus-hotel-booking-django-2.png b/screenshots/amadeus-hotel-booking-django-2.png deleted file mode 100644 index e0b9723..0000000 Binary files a/screenshots/amadeus-hotel-booking-django-2.png and /dev/null differ diff --git a/screenshots/amadeus-hotel-booking-django.png b/screenshots/amadeus-hotel-booking-django.png deleted file mode 100644 index a6ce25a..0000000 Binary files a/screenshots/amadeus-hotel-booking-django.png and /dev/null differ