diff options
| -rw-r--r-- | views/pages/home-page.html | 3 | ||||
| -rw-r--r-- | views/pages/language-pick.html | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/views/pages/home-page.html b/views/pages/home-page.html index 33c776c..11d0f7b 100644 --- a/views/pages/home-page.html +++ b/views/pages/home-page.html @@ -29,6 +29,7 @@ <p class="text-xl sm:text-2xl lg:text-3xl p-1 w-full font-andika italic text-left border-l-1.5 border-solid border-(--background-dark-color) bg-gradient-to-r from-(--background-dark-color) to-(--background-light-color)">{{ .L.HomePage.Contacts }}</p> + <hr class="w-full border-t-2 border-dotted border-main-hard mb-1"> <a href="https://t.me/EarlInisMona"> <i class="fa-brands fa-telegram w-4 h-4 mr-1"></i> <span class="font-bold">Telegram:</span> @@ -105,7 +106,7 @@ bg-gradient-to-r from-(--background-dark-color) to-(--background-light-color)">{{ .L.HomePage.SidebarDescription }}</p> <hr class="w-full border-t-2 border-dotted border-main-hard mb-1"> <div class="w-full grid grid-cols-[1fr_4fr] content-center items-center - [&>*:nth-child(4n+2)]:bg-(--background-medium-color) [&>*:nth-child(4n+3)]:bg-(--background-medium-color)" style="container-type: inline-size;"> + [&>*:nth-child(4n+2)]:bg-(--background-medium-color)/50 [&>*:nth-child(4n+3)]:bg-(--background-medium-color)/50" style="container-type: inline-size;"> <i class="fas fa-home w-full h-full text-[10cqi] content-center text-center text-main-hard"></i> <p class="p-1">{{ .L.HomePage.HomePageDescription }}</p> <i class="fas fa-search w-full h-full text-[10cqi] content-center text-center text-main-hard"></i> diff --git a/views/pages/language-pick.html b/views/pages/language-pick.html index 0bd0f6e..5a9d229 100644 --- a/views/pages/language-pick.html +++ b/views/pages/language-pick.html @@ -2,7 +2,7 @@ <div class="flex flex-col justify-center text-3xl h-[100%]"> {{- range .AvailableLanguages }} <hr class="border-t-2 border-dotted border-main-hard"> - <div class="nth-[2n+1_of_div]:bg-(--background-medium-color) p-2.5 flex flex-row justify-center justify-items-center"> + <div class="nth-[2n+1_of_div]:bg-(--background-medium-color)/50 nth-[2n_of_div]:bg-(--background-light-color)/50 p-2.5 flex flex-row justify-center justify-items-center"> <a href="/{{ .Name }}" class="w-12 h-12 basis-12 shrink-0 mr-4"> <img onclick="return changeUrl('{{ .Name }}');" class="w-full h-full aspect-square cursor-pointer object-cover rounded-md select-none" src="{{ .Flag }}"> </a> |