diff --git a/Countries/de/anthem.ogg b/Countries/de/anthem.ogg new file mode 100644 index 0000000..dc931b3 Binary files /dev/null and b/Countries/de/anthem.ogg differ diff --git a/Countries/de/index.html b/Countries/de/index.html index 12c05ed..0283919 100644 --- a/Countries/de/index.html +++ b/Countries/de/index.html @@ -9,9 +9,20 @@
- - + + Bundesrepublik Deutschland + + + + + + + +
@@ -43,6 +54,10 @@
- +
+
+ + + \ No newline at end of file diff --git a/Countries/de/style.css b/Countries/de/style.css index ec7ec35..d5932a0 100644 --- a/Countries/de/style.css +++ b/Countries/de/style.css @@ -1,12 +1,31 @@ +@font-face { + font-family: "Futura"; + src: url("../../FuturaLT-Heavy.ttf") format("truetype"); +} + .flag { - position: absolute; + display: block; + position: relative; top: 0; left: 0; overflow: hidden; - border-radius: 0 0 300px 0; /* Top-left corner rounded */ - height: 33.3%; + border-radius: 0 0 50pt 0; /* Top-left corner rounded */ + height: 95%; + width: 95%; + object-fit: cover; + border-right: 5px solid #000000; + border-bottom: 5px solid #000000; + } + + .coat { + display: block; + position: relative; + margin: auto auto; + overflow: hidden; + height: auto; + height: 100%; + width: auto; object-fit: cover; - border: 5px solid #dd0000; } .map { @@ -16,7 +35,6 @@ filter: brightness(0); margin-left: 33.3%; margin-right: 33.3%; - margin-top: 33.3%; } .parent { @@ -109,5 +127,68 @@ --bg-blur: var(--bg-blur-hover); } + body { + display: grid; + grid-template-areas: + "flag name coat" + "middle middle right" + "heads heads heads" + ; + grid-template-rows: 22% 1fr 50px; + grid-template-columns: 15% 1fr 18%; + grid-gap: 0px; + height: 100vh; + margin: 0px; + } + + right { + background-color:#000000; + margin: auto auto; + } + + flag { + grid-area: flag; + } + + name { + grid-area: name; + text-align: center; + font-family: Futura; + margin-top: auto; + margin-bottom: auto; + font-size: 4vw; + } + + coat { + grid-area: coat; + margin: 2.5%; + } + header { + background: #707070; + grid-area: header; + } + + nav { + background: #C9BFBF; + grid-area: nav; + } + + middle { + background: #ABABAB; + grid-area: middle; + } + + aside { + background: #C9C9C9; + grid-area: aside; + } + + heads { + grid-area: heads; + } + + header, nav, section, aside, footer { + padding: 5px; + } \ No newline at end of file