fixing a lot of bullshit
This commit is contained in:
parent
0729c62e17
commit
e7c95f911c
5 changed files with 17 additions and 57 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<div id="contact">
|
||||
<form action="{{ site.baseurl }}/contact-success/" method="post" class="contact-form">
|
||||
<div>
|
||||
<h2>Bli medlem</h2>
|
||||
<h2>Bli stödmedlem</h2>
|
||||
<input type="hidden" name="_to" value="{{ site.email }}" /><br />
|
||||
<input type="text" name="_gotcha" style="display: none;" />
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<canvas style="display:none" id="canvas3" width="570" height="570"></canvas>
|
||||
<canvas id="canvas2" width="570" height="570">*** THIS BROWSER DOES NOT SUPPORT THE CANVAS ELEMENT ***</canvas>
|
||||
<div class="hero">
|
||||
<a href="{{ site.baseurl }}/"><img src="/assets/img/logo%20galleri%20momangen.svg" alt="{{ site.title }}" /></a>
|
||||
<a href="{{ site.baseurl }}/" class="nodecoration"><img src="/assets/img/logo%20galleri%20momangen.svg" alt="{{ site.title }}" /></a>
|
||||
{% if page.url == "/" %}
|
||||
<div id="poster" class="column">
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
<p>På gång:<br />
|
||||
{{ event.start_datetime | date: "%Y-%m-%d"}} {{ event.start_datetime | date: "%R"}}<br />
|
||||
Typ av konst: {{ event.category }}</p>
|
||||
<h2><a href="{{ event.url }}">{{ event.title }}</a></h2>
|
||||
<h2><a href="{{ event.url }}" class="nodecoration">{{ event.title }}</a></h2>
|
||||
<h3>{{ event.description | truncatewords: 10 }} <span style="font-family:'avant', 'Helvetica Neue', Helvetica, Arial, sans-serif"><a href="{{ event.url }}">Läs mer</a></span></h3>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,6 @@ layout: default
|
|||
|
||||
</div>
|
||||
<div class="column">
|
||||
<h4>OBS! Du måste vara medlem!</h4>
|
||||
<h4>OBS! Du måste vara stödmedlem!</h4>
|
||||
{% include contact.html %}
|
||||
</div>
|
||||
|
|
@ -22,11 +22,6 @@ input[type=text], input[type=email], textarea, select {
|
|||
input[type=submit] {
|
||||
width: 200px;
|
||||
background: linear-gradient(97deg, rgb(84, 241, 210), rgb(165, 202, 195));
|
||||
background-size: 800% 800%;
|
||||
-webkit-animation: AnimationName 29s ease infinite;
|
||||
-moz-animation: AnimationName 29s ease infinite;
|
||||
animation: AnimationName 29s ease infinite;
|
||||
|
||||
color: white;
|
||||
padding: 14px 20px;
|
||||
margin: 8px 0;
|
||||
|
|
@ -36,11 +31,7 @@ input[type=submit] {
|
|||
}
|
||||
|
||||
input[type=submit]:hover {
|
||||
background: linear-gradient(97deg, rgb(165, 202, 195), rgb(84, 241, 210));
|
||||
background-size: 800% 800%;
|
||||
-webkit-animation: AnimationName 29s ease infinite;
|
||||
-moz-animation: AnimationName 29s ease infinite;
|
||||
animation: AnimationName 29s ease infinite;
|
||||
background: linear-gradient(97deg, rgb(84, 241, 210), rgb(165, 202, 195));
|
||||
|
||||
}
|
||||
/* CSS Created by CSS CHECKBOX */
|
||||
|
|
|
|||
|
|
@ -26,14 +26,6 @@ strong {
|
|||
font-family: avantB, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
|
||||
}
|
||||
|
||||
a h1:hover,
|
||||
a h2:hover,
|
||||
a h3,
|
||||
a h4 {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
h1{
|
||||
font-size: 2em;
|
||||
line-height: 1em;
|
||||
|
|
@ -56,18 +48,15 @@ a:active,
|
|||
a:focus {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
-webkit-transition: text-shadow 0.2s linear;
|
||||
-moz-transition: text-shadow 0.2s linear;
|
||||
-ms-transition: text-shadow 0.2s linear;
|
||||
-o-transition: text-shadow 0.2s linear;
|
||||
transition: text-shadow 0.2s linear;
|
||||
text-shadow: none;
|
||||
padding: 0 10px;
|
||||
border-radius: 3px;
|
||||
-webkit-transition: color 0.2s linear;
|
||||
-moz-transition: color 0.2s linear;
|
||||
-ms-transition: color 0.2s linear;
|
||||
-o-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
border-bottom: 3px solid rgb(84, 241, 210);
|
||||
}
|
||||
a:hover {
|
||||
text-shadow: .05em .05em rgb(31, 31, 31), -.05em -.05em rgb(224, 224, 224);
|
||||
|
||||
color: rgb(84, 241, 210);
|
||||
|
||||
}
|
||||
a:active {
|
||||
|
|
@ -96,13 +85,14 @@ a:active {
|
|||
position: relative;
|
||||
margin-bottom: 0;
|
||||
height: 10vh;
|
||||
// text-shadow: .05em .05em rgba(31, 31, 31, 0.5), -.05em -.05em rgba(224, 224, 224, 0.5);
|
||||
-moz-animation: fontmovement 5s linear infinite; /* Safari 4.0 - 8.0 */
|
||||
-webkit-animation: fontmovement 5s linear infinite; /* Safari 4.0 - 8.0 */
|
||||
animation: fontmovement 5s linear infinite;
|
||||
|
||||
}
|
||||
|
||||
.nodecoration {
|
||||
border:none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -125,29 +115,8 @@ a:active {
|
|||
flex-wrap: wrap;
|
||||
overflow-x: hidden;
|
||||
background-color: #fff;
|
||||
a:link,
|
||||
a:visited,
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus {
|
||||
text-decoration: none;
|
||||
background: linear-gradient(97deg, rgb(84, 241, 210), rgb(165, 202, 195));
|
||||
-webkit-transition: text-shadow 0.2s linear;
|
||||
-moz-transition: text-shadow 0.2s linear;
|
||||
-ms-transition: text-shadow 0.2s linear;
|
||||
-o-transition: text-shadow 0.2s linear;
|
||||
transition: text-shadow 0.2s linear;
|
||||
text-shadow: none;
|
||||
padding: 0 10px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
a:hover {
|
||||
text-shadow: .05em .05em rgb(31, 31, 31), -.05em -.05em rgb(224, 224, 224);
|
||||
background: linear-gradient(97deg, rgb(224, 224, 224), rgb(31, 31, 31),);
|
||||
color: rgb(84, 241, 210);
|
||||
|
||||
}
|
||||
}
|
||||
.column {
|
||||
flex: 1 1 300px;
|
||||
margin-left:5px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue