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

github.com/LordMathis/hugo-theme-nix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Smith <zsmith32@vt.edu>2021-06-17 04:53:19 +0300
committerZach Smith <zsmith32@vt.edu>2021-06-17 04:53:19 +0300
commitdb5c24b50dd97eec05715bff72b782f5bfafef64 (patch)
treee9b449ce0d1d53c235bd5df7705f3954784aa47e
parentfad057fee3126b7df40a89d64ae2a181c13ff38a (diff)
some font adjustments for smaller screens
-rw-r--r--static/css/nix.css27
1 files changed, 26 insertions, 1 deletions
diff --git a/static/css/nix.css b/static/css/nix.css
index daa132a..5a0380f 100644
--- a/static/css/nix.css
+++ b/static/css/nix.css
@@ -50,7 +50,7 @@ h1,h2,h3,h4,h5,h6 {
}
#user-name {
- font-size: 1em;
+ font-size: 2em;
text-transform: uppercase;
}
@@ -100,6 +100,7 @@ i {
.post-summary {
padding: 0 5px 0 5px;
+ font-size: initial;
}
.post-list-footer {
@@ -139,6 +140,7 @@ i {
.footer p {
margin: 0 !important;
+ font-size: initial;
}
.col-centered{
@@ -153,3 +155,26 @@ div p {
td {
margin: 0 20px 0 20px;
}
+
+/*
+ * Some font-size tweaks for smaller screens
+ */
+@media screen and (max-width: 480px) {
+ .user-social {
+ font-size: 50%;
+ }
+
+ nav {
+ font-size: 80%;
+ }
+}
+
+@media screen and (max-width: 320px) {
+ .user-social {
+ font-size: 40%;
+ }
+
+ nav {
+ font-size: 80%;
+ }
+}