Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/danielkvist/hugo-terrassa-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina <feministclickback@mail36.net>2020-05-09 20:47:53 +0300
committerTina <feministclickback@mail36.net>2020-05-09 20:47:53 +0300
commit6f16f712f114c43567bff73f4a3b21bda09b7922 (patch)
treec7130d41dc3509f44e41ef2354e12dd10951d4d9
parentf73716ad6e442bdfda0445d389fc0955f8680390 (diff)
Add styles for language switcher
-rw-r--r--assets/css/style.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index e669447..4f4f800 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -583,3 +583,21 @@
transform: scale(0, 0);
transition: 0s;
}
+
+/* LANGUAGE SWITCHER */
+.LangNav {
+ display: flex;
+ justify-content: flex-start;
+ align-items: center;
+ margin: 1rem 4.5rem;
+}
+
+.LangNav a {
+ margin: 0 0.2rem;
+}
+.LangNav span:first-child::after {
+ content: "|";
+}
+a.language.active {
+ opacity: 0.5;
+}