Skip to content
Snippets Groups Projects
Commit f02ec70a authored by Dorian Lesbre's avatar Dorian Lesbre
Browse files

Added basic CSS

parent bbd59f91
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,19 @@ a:link {
color: rgb(62, 62, 255);
}
.header {
background-color: #006809;
margin-top: 0;
padding: 5px 5px 20px 20px;
}
.header h1, .header h1 a, .header h1 a:visited, .header h1 a:active {
color: #ddd;
font-size: 60px;
text-decoration: none;
text-align: center;
}
section {
text-align: justify;
}
......@@ -23,11 +36,11 @@ section > * {
max-width: 960px;
margin-left: calc(50% - 480px);
margin-right: calc(50% - 480px);
padding-left: 60px;
padding-right: 60px;
}
section p {
padding-bottom: 20px;
font-size: 1rem;
}
\ No newline at end of file
......@@ -3,11 +3,18 @@
<html lang=fr>
<head>
<title>Site title</title>
<meta name="description" content="Site description">
<meta name="keywords" content="Keywords for search">
<meta charset="utf-8">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
<body>
<header>
<div class="header">
<h1><a href="/">The site's title</a></h1>
</div>
</header>
<section>
<h1>A Title</h1>
<p>a paragraph</p>
......
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