diff options
author | Jesús <heckyel@hyperbola.info> | 2021-06-14 18:39:03 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-06-14 18:39:03 -0500 |
commit | fc8a23099d205cdfae44e6745a2d022284c2b60c (patch) | |
tree | 815c96de33956e6f7913889ffeb7eb98b8af1f6d /youtube/templates | |
parent | 999173b1ba43f4535b6507e10c8cba2c01d2180f (diff) | |
download | yt-local-fc8a23099d205cdfae44e6745a2d022284c2b60c.tar.lz yt-local-fc8a23099d205cdfae44e6745a2d022284c2b60c.tar.xz yt-local-fc8a23099d205cdfae44e6745a2d022284c2b60c.zip |
Fix shared.css file style missing
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/base.html | 1 | ||||
-rw-r--r-- | youtube/templates/shared.css | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/youtube/templates/base.html b/youtube/templates/base.html index 012151f..f78d1b0 100644 --- a/youtube/templates/base.html +++ b/youtube/templates/base.html @@ -9,6 +9,7 @@ <link href="/youtube.com/static/favicon.ico" type="image/x-icon" rel="icon"/> <link href="/youtube.com/static/normalize.css" rel="stylesheet"/> <link href="{{ theme_path }}" rel="stylesheet"/> + <link href="/youtube.com/shared.css" rel="stylesheet"> {% block style %} {{ style }} {% endblock %} diff --git a/youtube/templates/shared.css b/youtube/templates/shared.css new file mode 100644 index 0000000..8f12651 --- /dev/null +++ b/youtube/templates/shared.css @@ -0,0 +1,5 @@ +html { + font-family: {{ font_family }}; + background: var(--background); + color: var(--text); +} |