diff --git a/app/static/css/partials/_film.scss b/app/static/css/partials/_film.scss index 23c6a59..ab5acee 100755 --- a/app/static/css/partials/_film.scss +++ b/app/static/css/partials/_film.scss @@ -71,6 +71,7 @@ main > .film { max-width: var(--container-width); margin: auto; .info { + position: relative; margin-bottom: 32px; text-overflow: ellipsis; overflow: hidden; @@ -165,14 +166,19 @@ main > .film { .info-meta { display: inline-block; - margin: 0 auto; - position: absolute; + margin: 40px auto; + position: relative; max-width: 600px; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); animation: fade_in 1s linear 0.4s forwards; opacity: 0; + line-height: 1.4; +} +@media screen and (max-width: 799px) { + .info-meta { + margin-top: 20px; + width: 70%; + transform: unset; + } } main > .film { @@ -259,10 +265,12 @@ main > .film { font-size: 18px; } -.film-play-padma { +.film-play-pandora{ font-family: "wrong font"; a { - color: #ddd; + color: var(--color-link); + font-size: 24px; + font-weight: bold; text-decoration: none; } } diff --git a/app/static/css/partials/_menu.scss b/app/static/css/partials/_menu.scss index d941f4f..4ca8cdf 100755 --- a/app/static/css/partials/_menu.scss +++ b/app/static/css/partials/_menu.scss @@ -9,6 +9,7 @@ @media screen and (max-width: 799px) { padding-top: calc(var(--spacing) * 1.6); + height: 98px; } @media screen and (min-width: 800px) { diff --git a/app/static/js/about.js b/app/static/js/about.js index d785bfb..5c31224 100755 --- a/app/static/js/about.js +++ b/app/static/js/about.js @@ -1,58 +1,3 @@ -document.querySelectorAll('.accordion-checkbox').forEach(cbox => { - cbox.addEventListener('change', function() { - const label = this.previousElementSibling - const caret = label.querySelector('.text-about') - if (cbox.checked) { - caret.innerHTML = '' - } else { - caret.innerHTML = '' - } - }) +pandoraAPI('getPage', {'name': 'about'}).then(response => { + document.querySelector('main .about').innerHTML = response.data.text }) - -// FIXME: maybe move to utils -function getCookie(name) { - var cookieValue = null; - if (document.cookie && document.cookie !== '') { - var cookies = document.cookie.split(';'); - for (var i = 0; i < cookies.length; i++) { - var cookie = cookies[i].trim() - // Does this cookie string begin with the name we want? - if (cookie.substring(0, name.length + 1) === (name + '=')) { - cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); - break; - } - } - } - if (!cookieValue && name === 'csrftoken') { - var input = document.querySelector('input[name="csrfmiddlewaretoken"]') - if (input) { - cookieValue = input.value - } - } - return cookieValue; -} - -document.getElementById('contact-form').addEventListener('submit', async function(event) { - // console.log('foobar') - event.preventDefault() - let data = new FormData() - data.append('email', document.getElementById('input-email').value) - data.append('message', document.getElementById('input-msg').value) - data.append('csrfmiddlewaretoken', getCookie('csrftoken')) - document.getElementById('contact-container').innerHTML = '...' - let success; - try { - const response = await fetch('/polis+contact/', { - method: 'POST', - body: data - }) - let resData = await response.json() - success = resData.success - } catch (e) { - console.log('error', e) - success = false - } - const thanksMsg = success ? 'Thanks for your message 謝謝您的訊息' : 'Failed to send message. Try again later.' - document.getElementById('contact-container').innerHTML = `