From 326cbdd957a9a2a2a604674058412de636155033 Mon Sep 17 00:00:00 2001
From: karl <karl@suma-ev.de>
Date: Tue, 17 May 2016 12:23:58 +0200
Subject: [PATCH] =?UTF-8?q?*=20Die=20Ueber=20Uns=20Seite=20sieht=20jetzt?=
 =?UTF-8?q?=20wieder=20aus=20wie=20fr=C3=BCher.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 app/Http/routes.php             |  3 ++-
 public/css/about.css            | 16 ++++++++++++++++
 resources/views/about.blade.php |  2 +-
 3 files changed, 19 insertions(+), 2 deletions(-)
 create mode 100644 public/css/about.css

diff --git a/app/Http/routes.php b/app/Http/routes.php
index 5ba4259e4..43915bd0a 100644
--- a/app/Http/routes.php
+++ b/app/Http/routes.php
@@ -31,7 +31,8 @@
         Route::get('about', function()
         {
             return view('about')
-                ->with('title', 'Ãœber Uns');
+                ->with('title', 'Ãœber Uns')
+                ->with('css', 'about.css');
         });
         Route::get('team', function()
         {
diff --git a/public/css/about.css b/public/css/about.css
new file mode 100644
index 000000000..d93360a97
--- /dev/null
+++ b/public/css/about.css
@@ -0,0 +1,16 @@
+main ul {
+	margin-top: 20px;
+}
+
+main li {
+	margin-bottom: 15px;
+}
+
+#about-list {
+	list-style-type: disc;
+	text-align: left;
+}
+
+#about-list li {
+	margin-bottom: 15px;
+}
\ No newline at end of file
diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php
index 4263482a8..43692a308 100644
--- a/resources/views/about.blade.php
+++ b/resources/views/about.blade.php
@@ -7,7 +7,7 @@
 </h1>
 <h3>Welche Vorteile bietet die Nutzung von MetaGer?
 </h3>
-<ul>
+<ul id="about-list">
   <li>Datenschutz und Privatsphäre sind bei uns einfach und selbstverständlich: Fertig eingebaut und automatisch bei jeder Suche angewandt. 
     <a href="/datenschutz/">Mehr dazu...
     </a>
-- 
GitLab