diff --git a/css/src/style.scss b/css/src/style.scss index 3a80b02..c4cb71e 100644 --- a/css/src/style.scss +++ b/css/src/style.scss @@ -416,6 +416,27 @@ a { // } +.nationLayout { + display: flex; + flex-direction: column; +} +@media (min-width: 601px) { + .nationLayout { + display: flex; + flex-direction: row; + } +} +.nationFlag { + border-radius: 12px; +} +.nationCoreInfo { + flex-grow: 1; + display: flex; + gap: 1rem; + flex-direction: column; + flex-wrap: wrap; +} + .pageFooter { opacity: 0.8; diff --git a/template/nation.twig b/template/nation.twig index 8e2cf0c..81c45bc 100644 --- a/template/nation.twig +++ b/template/nation.twig @@ -3,13 +3,20 @@ {% include 'includes/hero.twig' %} {% include 'includes/nav.twig' with {'page': 'nation'} %} - +
-

{{ nation.name }}

-

{{ nation.short }}

-
- {{ nation.name }}'s flag. -

{{ nation.description }}

+
+
+

{{ nation.name }}

+

{{ nation.short }}

+
+ {{ nation.name }}'s flag. +
+
+

Description

+

{{ nation.description }}

+
+
{% include 'includes/footer.twig' %}