update styles for form
This commit is contained in:
parent
1fb35c79a6
commit
84c80ab632
5 changed files with 53 additions and 17 deletions
|
@ -78,7 +78,7 @@
|
||||||
.annotation-icon-wrapper {
|
.annotation-icon-wrapper {
|
||||||
border: 3px solid rgba(#fff, 0.8);
|
border: 3px solid rgba(#fff, 0.8);
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: linear-gradient(to right, var(--bg-color-1), var(--bg-color-2) , var(--bg-color-3), var(--bg-color-4));
|
background: var(--gradient-body);
|
||||||
background-size: 300% 100%;
|
background-size: 300% 100%;
|
||||||
width: 52px;
|
width: 52px;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
|
|
31
app/static/css/partials/_contact.scss
Normal file → Executable file
31
app/static/css/partials/_contact.scss
Normal file → Executable file
|
@ -5,23 +5,44 @@ main > .contact {
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
margin: 0 0 var(--spacing) 0;
|
font-weight: 700;
|
||||||
|
margin: 0 0 var(--spacing-2) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-size: 18px;
|
||||||
|
display: block;
|
||||||
|
padding: 0 0 calc(var(--spacing) / 2) 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=email], textarea {
|
input[type=email], textarea {
|
||||||
border: 0;
|
|
||||||
background: blue;
|
background: blue;
|
||||||
color: red;
|
color: red;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 1.3;
|
margin-bottom: var(--spacing-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input[type=email], input[type=email], textarea {
|
||||||
|
border: 0;
|
||||||
|
line-height: 1.3;
|
||||||
|
display: block;
|
||||||
|
max-width: 500px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
width: 500px;
|
|
||||||
height: 300px;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
border: 0;
|
border: 0;
|
||||||
background: green;
|
color: #fff;
|
||||||
|
background: var(--gradient-body);
|
||||||
|
font-size: 18px;
|
||||||
|
font-family: "noto_sans", sans-serif;
|
||||||
|
font-weight: 700;
|
||||||
|
padding: var(--spacing) var(--spacing-2);
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
--bg-color-3: #ffff00;
|
--bg-color-3: #ffff00;
|
||||||
--bg-color-4: #ff3399;
|
--bg-color-4: #ff3399;
|
||||||
|
|
||||||
|
--gradient-body: linear-gradient(to right, var(--bg-color-1), var(--bg-color-2) , var(--bg-color-3), var(--bg-color-4));
|
||||||
|
|
||||||
--color-link: #ee0;
|
--color-link: #ee0;
|
||||||
|
|
||||||
--spacing: 8px;
|
--spacing: 8px;
|
||||||
|
@ -34,7 +36,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body.animated {
|
body.animated {
|
||||||
background: linear-gradient(to right, var(--bg-color-1), var(--bg-color-2) , var(--bg-color-3), var(--bg-color-4));
|
background: var(--gradient-body);
|
||||||
animation: background_animation 60s ease-in-out infinite;
|
animation: background_animation 60s ease-in-out infinite;
|
||||||
background-size: 400% 100%;
|
background-size: 400% 100%;
|
||||||
color: #ddd;
|
color: #ddd;
|
||||||
|
|
|
@ -136,8 +136,24 @@
|
||||||
<p>Project "<a href="/polis">Phantas.ma/polis</a>" is organized by National Taiwan Museum of Fine Arts, supervised by the Ministry of Culture, and is co-organized by the Cultural Taiwan Foundation and in partnership with SEA Plateau.</p>
|
<p>Project "<a href="/polis">Phantas.ma/polis</a>" is organized by National Taiwan Museum of Fine Arts, supervised by the Ministry of Culture, and is co-organized by the Cultural Taiwan Foundation and in partnership with SEA Plateau.</p>
|
||||||
|
|
||||||
<p>本計畫由國立臺灣美術館策劃,文化部指導、財團法人文化臺灣基金會支持、SEA plateaus協力。</p>
|
<p>本計畫由國立臺灣美術館策劃,文化部指導、財團法人文化臺灣基金會支持、SEA plateaus協力。</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="contact">
|
||||||
|
{% if submitted %}
|
||||||
|
Thanks for your message
|
||||||
|
{% else %}
|
||||||
|
<h1>Contact 聯絡</h1>
|
||||||
|
<form method="post">
|
||||||
|
<label for="input-email">Your Email</label>
|
||||||
|
<input name="email" type="email" id="input-email" required>
|
||||||
|
|
||||||
|
<label for="input-msg">Message 訊息</label>
|
||||||
|
<textarea name="message" id="input-msg" required></textarea>
|
||||||
|
|
||||||
|
<input type="submit" value="Send Message 傳送訊息">
|
||||||
|
{% csrf_token %}
|
||||||
|
</form>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block end %}
|
{% block end %}
|
||||||
|
|
15
app/templates/contact.html
Normal file → Executable file
15
app/templates/contact.html
Normal file → Executable file
|
@ -8,15 +8,12 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
<h1>Contact 聯絡</h1>
|
<h1>Contact 聯絡</h1>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<label>
|
<label for="input-email">Your Email</label>
|
||||||
Your Email:
|
<input name="email" type="email" id="input-email" required>
|
||||||
<input name="email" type="email" required>
|
|
||||||
</label>
|
<label for="input-msg">Message 訊息</label>
|
||||||
<br>
|
<textarea name="message" id="input-msg" required></textarea>
|
||||||
<label>Message 訊息:<br>
|
|
||||||
<textarea name="message" required></textarea>
|
|
||||||
</label>
|
|
||||||
<br>
|
|
||||||
<input type="submit" value="Send Message 傳送訊息">
|
<input type="submit" value="Send Message 傳送訊息">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue