diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-25 18:56:03 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-25 18:56:03 +0200 |
commit | 9dc1797c1534aa8ef1e86bed29e3f0f0dc3f8e88 (patch) | |
tree | daade9aefb30940ad840b17ce79910149279c60b /src | |
parent | 1923b3868266392458888d088028fc7669b10793 (diff) |
Add native-language country names
Diffstat (limited to 'src')
-rw-r--r-- | src/euro/index.ccoins.gsp | 5 | ||||
-rw-r--r-- | src/style.css | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/euro/index.ccoins.gsp b/src/euro/index.ccoins.gsp index a8dcc00..ae16426 100644 --- a/src/euro/index.ccoins.gsp +++ b/src/euro/index.ccoins.gsp @@ -16,7 +16,10 @@ html lang="en" { section { header { h1 {-__demonym Euro Coins} - p {-__percentage} + h3 { + span {-__altnames} + span {-__percentage} + } } } diff --git a/src/style.css b/src/style.css index 7253503..6d00b54 100644 --- a/src/style.css +++ b/src/style.css @@ -226,6 +226,12 @@ header h1 { margin-bottom: 0; } +header h3 { + margin-top: 0; + display: flex; + justify-content: space-between; +} + header p { color: lightgrey; } |