Compare commits

..

2 Commits

Author SHA1 Message Date
legion e608ad1868 Add animated logo
continuous-integration/drone/push Build is passing Details
2020-12-02 00:13:08 +01:00
legion c02a36bcb2 Fix docker container 2020-12-02 00:13:08 +01:00
4 changed files with 6 additions and 19 deletions

View File

@ -1,5 +1,4 @@
$background: #100e23;
$fill-color: #eeeeee;
$text-color: #ffffff;
$highlight: #05b9ec;

View File

@ -20,6 +20,7 @@ body {
}
header {
margin-bottom: 1em;
}
main {
@ -50,12 +51,8 @@ footer {
}
h1, h2, h3, h4, h5, h6, p, ul {
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 0 0.5rem;
&:last-child {
margin-bottom: 0.5em;
}
}
h1, h2, h3, h4, h5, h6 {
@ -67,21 +64,12 @@ h1 {
}
figure {
margin: 1rem 0;
margin-bottom: 1rem;
img {
max-width: 100%;
display: block;
margin: 0 auto;
&.invert {
filter: invert(100%);
}
&.fill {
background: $fill-color;
padding: 0.5em;
}
}
figcaption {

View File

@ -15,8 +15,8 @@ The Franconian Cluster is a network of franconian hackspaces that organised the
### Hackzogtum
{{<image class="invert" src="/hackzogtum.svg" alt="Logo of Hackzogtum">}}
{{<image src="/hackzogtum.svg" alt="Logo of Hackzogtum">}}
### Nerd2Nerd
{{<image class="fill" src="/n2n.svg" alt="Logo of Nerd2Nerd">}}
{{<image src="/n2n.svg" alt="Logo of Nerd2Nerd">}}

View File

@ -1,4 +1,4 @@
<figure>
<img{{ with .Get "class" }} class="{{ . }}"{{ end }} src="{{ .Get "src" }}" alt="{{ .Get "alt" }}">
<img src="{{ .Get "src" }}" alt="{{ .Get "alt" }}">
<figcaption>{{ .Get "alt" }}</figcaption>
</figure>