diff options
author | luxagraf <sng@luxagraf> | 2021-01-30 17:40:58 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf> | 2021-01-30 17:40:58 -0500 |
commit | c7fee3786a0221fb3a7032491b0a2d512f0b27c4 (patch) | |
tree | 312f7cfb9fea1312e8aae0aa4ab8175209ea739e /design | |
parent | 75a321c33af42b329166e56cc6cf497f4c17949e (diff) |
lttr: fixed some bugs in range template and the insert video code
Diffstat (limited to 'design')
-rw-r--r-- | design/sass/screenv10.scss | 6 | ||||
-rw-r--r-- | design/templates/admin/insert_images.html | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/design/sass/screenv10.scss b/design/sass/screenv10.scss index 02e4f50..0eb1655 100644 --- a/design/sass/screenv10.scss +++ b/design/sass/screenv10.scss @@ -155,6 +155,12 @@ figcaption { figcaption a, figcaption a:visited { color: #666; } +.figcaption { + display: block; + font-family: mffnweb, Helvetica, sans-serif; + font-size: 16px; + margin-top: -6px; +} h1 { font-size: 48px; font-size: 3rem; diff --git a/design/templates/admin/insert_images.html b/design/templates/admin/insert_images.html index 8a6596d..feaa88f 100644 --- a/design/templates/admin/insert_images.html +++ b/design/templates/admin/insert_images.html @@ -77,7 +77,7 @@ function buildVideo(video_mp4, video_webm, id, c, poster, ytlink) { html += '>\n\t\t<source src="'+video_webm+'" type="video/webm">\n'; html += '\t\t<source src="'+video_mp4+'" type="video/mp4">\n'; html += '\t\tYour browser does not support video playback via HTML5.\n\t</video>\n'; - html += '\t<a href="'+ytlink+'">Watch on YouTube</a>\n</div>'; + html += '\t<a class="figcaption" href="'+ytlink+'">Watch on YouTube</a>\n</div>'; return html; } function buildImage(image_url, id, c, caption) { |