From bbd59f91556170e17f0dea65584d99bed76e5bb0 Mon Sep 17 00:00:00 2001
From: Dorian Lesbre <dorian.lesbre@gmail.com>
Date: Thu, 24 Dec 2020 10:23:23 +0100
Subject: [PATCH] Added lorem ipsum and basic css

---
 home/static/css/style.css | 32 +++++++++++++++++++++++++++++---
 home/templates/home.html  |  9 ++++++---
 2 files changed, 35 insertions(+), 6 deletions(-)

diff --git a/home/static/css/style.css b/home/static/css/style.css
index 0654e39..d75f6ef 100644
--- a/home/static/css/style.css
+++ b/home/static/css/style.css
@@ -1,7 +1,33 @@
-body {
-	background-color: #FFF;
+html, body {
 	color: #333;
-	font-size: 1em;
+	font-size: 18px;
+	font-weight: 300;
 	line-height: 1.5;
 	font-family: Arial, Roboto, Helvetica, sans-serif;
 }
+
+body {
+	background-color: #FFF;
+}
+
+a:link {
+	text-decoration: underline;
+	color: rgb(62, 62, 255);
+}
+
+section {
+	text-align: justify;
+}
+
+section > * {
+	max-width: 960px;
+
+	margin-left: calc(50% - 480px);
+	padding-left: 60px;
+	padding-right: 60px;
+}
+
+section p {
+	padding-bottom: 20px;
+	font-size: 1rem;
+}
\ No newline at end of file
diff --git a/home/templates/home.html b/home/templates/home.html
index 130f076..a5ffe09 100644
--- a/home/templates/home.html
+++ b/home/templates/home.html
@@ -8,8 +8,11 @@
     <link rel="stylesheet" href="{% static 'css/style.css' %}">
 	</head>
 	<body>
-		<h1>A Title</h1>
-		<p>a paragraph</p>
-		<p>another paragraph</p>
+		<section>
+			<h1>A Title</h1>
+			<p>a paragraph</p>
+			<p>another paragraph with <a href="http://www.google.com" class="external">an external link</a></p>
+			<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
+		</section>
 	</body>
 </html>
\ No newline at end of file
-- 
GitLab