From 7bc33d3042366d7baef48a9966a5c23f80ffe7b9 Mon Sep 17 00:00:00 2001 From: Paulo Truta Date: Sat, 16 Mar 2024 17:46:07 +0100 Subject: [PATCH] Added impressjs folder, berlin presentation --- impressjs/berlin/index.html | 68 +++++++++++++++++++++++++++++++++++++ impressjs/berlin/style.css | 51 ++++++++++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 impressjs/berlin/index.html create mode 100644 impressjs/berlin/style.css diff --git a/impressjs/berlin/index.html b/impressjs/berlin/index.html new file mode 100644 index 0000000..7d14fd0 --- /dev/null +++ b/impressjs/berlin/index.html @@ -0,0 +1,68 @@ + + + + + + Berlin Presentation + + + + + +
+
+

City of Berlin πŸ™οΈ

+ Berlin City +

Germany's capital, dates to the 13th century. Reminders of the city's turbulent 20th-century history include its Holocaust memorial and the Berlin Wall's graffitied remains.

+
+
+

History of Berlin πŸ“œ

+ History Book +

Berlin's history has seen it serve as the capital of different German states, a city divided during the Cold War, and reunification to become the modern, vibrant city it is today.

+
+
+

Party Scene πŸ’ƒπŸ½

+ Party Scene +

Berlin is famous for its nightlife, with weekend parties often lasting well into Monday.

+
+
+

Museums πŸ–ΌοΈ

+ Museum Island +

Museum Island, located in the heart of Berlin, is a UNESCO World Heritage site and home to globally important collections and cultural treasures.

+
+
+

Berlin Wall 🧱

+ Berlin Wall +

The Berlin Wall divided Berlin into East and West for 28 years and has now become a symbol of the city's history.

+
+
+

Brandenburg Gate πŸ›οΈ

+ Brandenburg Gate +

The Brandenburg Gate is an iconic symbol of Berlin and German reunification.

+
+
+

Reichstag Building πŸͺ

+ Reichstag Building +

This historic edifice, home to the German parliament, is renowned for its impressive glass dome offering excellent city views.

+
+
+

Food & Drink 🍴

+ Berlin Food +

Discover Berlin's diverse food scene, with its mix of traditional German food, international cuisine, and local delicacies like Currywurst and DΓΆner Kebab.

+
+
+

Parks 🌳

+ Berlin Parks +

Explore Berlin's green spaces like Tiergarten, Tempelhofer Park, and more.

+
+
+

Conclusion πŸŽ‰

+

With its multi-layered history, vibrant nightlife, wide range of cultural activities, and welcoming parks, Berlin is unquestionably a city that offers something for everyone.

+
+
+ + + + + + \ No newline at end of file diff --git a/impressjs/berlin/style.css b/impressjs/berlin/style.css new file mode 100644 index 0000000..fa6f1a6 --- /dev/null +++ b/impressjs/berlin/style.css @@ -0,0 +1,51 @@ +body { + background-color: white; + font-family: Arial, sans-serif; + color: black; + margin: 0; + padding: 0; +} + +.step { + width: 600px; + border-radius: 10px; + padding: 40px; + /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); + background-color: #FFFFF0; */ + color: #333; + text-align: center; + opacity: 10%; + transition: opacity 1s; +} + +.step img { + opacity: 0%; + transition: opacity 1s; +} + +.active { + opacity: 100%; + transition: opacity 1s; +} + +.active img { + opacity: 100%; + transition: opacity 1s; +} + +h1 { + font-size: 2.5em; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); +} + +p { + font-size: 1.2em; + line-height: 1.4; + margin: 20px 0; +} + +img { + width: 80%; + height: auto; + margin-top: 20px; +} \ No newline at end of file