diff options
| author | soaos <soaos@soaos.dev> | 2026-04-03 18:40:22 -0400 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-04-03 18:40:22 -0400 |
| commit | c1dfd130259b8747c84086ed93b5aa37fdbd1fc5 (patch) | |
| tree | 2251acdc3f04ab8249fcd93c95f18bf985cf57a0 | |
| parent | 1825a0971f2c4075ef4439662ca3030d5e1c258d (diff) | |
viewport meta tag
| -rw-r--r-- | static/style.css | 16 | ||||
| -rw-r--r-- | templates/base.html | 1 |
2 files changed, 9 insertions, 8 deletions
diff --git a/static/style.css b/static/style.css index 804ce8d..038a78e 100644 --- a/static/style.css +++ b/static/style.css @@ -43,8 +43,7 @@ a:not(:has(img, div))[target="_blank"]::after { content: " ⎘"; } -a:not(:has(img,div))[href^="https://tv.soaos.dev/w/"]::before -{ +a:not(:has(img, div))[href^="https://tv.soaos.dev/w/"]::before { content: "📺 "; } @@ -116,7 +115,6 @@ a.evil:hover { .no-bullets { list-style-type: none; padding-left: 0; - :w; } #badge-grid { @@ -189,14 +187,16 @@ body { } #statuscafe { -padding: .5em; -background-color: var(--button-highlight); + padding: .5em; + background-color: var(--button-highlight); } + #statuscafe-username { -margin-bottom: .5em; + margin-bottom: .5em; } + #statuscafe-content { -margin: 0 1em 0.5em 1em; + margin: 0 1em 0.5em 1em; } .album-thumb { @@ -222,4 +222,4 @@ margin: 0 1em 0.5em 1em; /**/ /* h6 { */ /* color: var(--purple); */ -/* } */ +/* } */
\ No newline at end of file diff --git a/templates/base.html b/templates/base.html index cdf718d..1435106 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,6 +10,7 @@ <link rel="stylesheet" href="/98.css" /> <link rel="stylesheet" href="/style.css" /> <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> {% block headcontent %} {% endblock headcontent %} </head> |