Added a mission statement.
This commit is contained in:
parent
bf2ddbea4a
commit
f554de91ba
6 changed files with 59 additions and 35 deletions
|
@ -0,0 +1,37 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Roboto', sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
header .ui.grid > .column, .title.ui.grid > .column {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box h2 {
|
||||||
|
font-size: 1rem !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a .icon {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:hover, a:visited {
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mission-statement {
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
img {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 153 KiB |
|
@ -5,9 +5,14 @@
|
||||||
<title>{% block title %}Terminverwaltung Calcifer{% endblock %}</title>
|
<title>{% block title %}Terminverwaltung Calcifer{% endblock %}</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- Bootstrap -->
|
<!-- Bootstrap -->
|
||||||
<link href="{{ asset('css/semantic.css') }}" rel="stylesheet" media="screen">
|
|
||||||
<link href='//fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
|
<link href='//fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
|
||||||
<link href="{{ asset('css/custom.css') }}" rel="stylesheet" media="screen">
|
{% stylesheets filter="compass"
|
||||||
|
"@CalciferBundle/Resources/assets/css/main.scss"
|
||||||
|
"css/semantic.scss"
|
||||||
|
"css/custom.scss"
|
||||||
|
%}
|
||||||
|
<link rel="stylesheet" href="{{ asset_url }}" media="screen" />
|
||||||
|
{% endstylesheets %}
|
||||||
{% block css %}
|
{% block css %}
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -17,6 +22,21 @@
|
||||||
<body>
|
<body>
|
||||||
{% include "CalciferBundle::navigation.html.twig" %}
|
{% include "CalciferBundle::navigation.html.twig" %}
|
||||||
|
|
||||||
|
<div class="ui one column page grid">
|
||||||
|
<div class="column">
|
||||||
|
<div id="mission-statement" class="ui message green">
|
||||||
|
{% image '@CalciferBundle/Resources/assets/images/logo.png' %}
|
||||||
|
<img
|
||||||
|
title="Eine Zeichnung von Calcifer. Gezeichnet von simply-Sylvan (http://simply-sylvan.deviantart.com/art/Calcifer-Purple-176746086)"
|
||||||
|
alt="Eine Zeichnung von Calcifer. Gezeichnet von simply-Sylvan (http://simply-sylvan.deviantart.com/art/Calcifer-Purple-176746086)"
|
||||||
|
src="{{ asset_url }}"
|
||||||
|
class="ui image small floated left" />
|
||||||
|
{% endimage %}
|
||||||
|
<p>Calcifer ist ein Daemon aus dem Anime <a href="http://anidb.net/perl-bin/animedb.pl?show=anime&aid=1218">„Das wandelnde Schloss“</a>, der sich darum kümmert das sich Howls Schloss weiter bewegt. Diese Terminverwaltung soll dafür sorgen das sich der <a href="https://www.krautspace.de/">Hackspace Jena</a> auch weiter bewegt und viele tolle Termine statfinden.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="main" class="segment">
|
<div id="main" class="segment">
|
||||||
{% block body %}{% endblock %}
|
{% block body %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Roboto', sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
header .ui.grid > .column, .title.ui.grid > .column {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.box h2 {
|
|
||||||
font-size: 1rem !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main {
|
|
||||||
margin-top: 4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a .icon {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:hover, a:visited {
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
0
web/css/custom.scss
Normal file
0
web/css/custom.scss
Normal file
0
web/css/semantic.css → web/css/semantic.scss
Executable file → Normal file
0
web/css/semantic.css → web/css/semantic.scss
Executable file → Normal file
Reference in a new issue