Skip to content
Snippets Groups Projects
Commit 87ba6fa6 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch '7-hilfe-seite' into 'master'

+ Die Hilfe Seite ist nun erreichbar und sieht fast aus wie das Original.

Closes #7

See merge request !12
parents 9a0e9129 66a08495
No related branches found
No related tags found
1 merge request!12+ Die Hilfe Seite ist nun erreichbar und sieht fast aus wie das Original.
...@@ -51,7 +51,15 @@ ...@@ -51,7 +51,15 @@
->with('css', 'kontakt.css') ->with('css', 'kontakt.css')
->with('js', ['openpgp.min.js','kontakt.js']); ->with('js', ['openpgp.min.js','kontakt.js']);
}); });
Route::post('kontakt', 'MailController@contactMail'); Route::post('kontakt', 'MailController@contactMail');
Route::get('hilfe', function()
{
return view('hilfe')
->with('title', 'MetaGer - hilfe')
->with('css', 'help.css');
});
}); });
* {
}
h3 {
font-size: 21px;
margin-top: 7px;
}
p {
white-space: pre-wrap;
}
h1 {
margin-bottom: 25px;
}
p {
margin: 20px 0;
}
main {
text-align: left;
}
h2 {
font-size: 23px;
margin-top: 10px;
}
address {
white-space: pre;
}
main ul{
list-style-type: disc;
text-align: left;
}
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment