feat(style): improve css
This commit is contained in:
parent
7cc2f3d1de
commit
f02e1c6d22
8 changed files with 235 additions and 174 deletions
|
|
@ -2,11 +2,11 @@
|
||||||
title: "À propos"
|
title: "À propos"
|
||||||
---
|
---
|
||||||
|
|
||||||
## Le but
|
### Le but
|
||||||
|
|
||||||
Apprendre à diagnostiquer, à réparer.
|
Apprendre à diagnostiquer, à réparer.
|
||||||
|
|
||||||
## Comment ça marche ?
|
### Comment ça marche ?
|
||||||
|
|
||||||
1. Vous apportez votre objet cassé
|
1. Vous apportez votre objet cassé
|
||||||
2. Nous vous aidons à diagnostiquer la panne
|
2. Nous vous aidons à diagnostiquer la panne
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,11 @@
|
||||||
title: "Contact"
|
title: "Contact"
|
||||||
---
|
---
|
||||||
|
|
||||||
## Email
|
### Email
|
||||||
|
|
||||||
[repair-cafe@ariege.org](mailto:repair-cafe@ariege.org)
|
[repair-cafe@ariege.org](mailto:repair-cafe@ariege.org)
|
||||||
|
|
||||||
## Signal
|
### Signal
|
||||||
|
|
||||||
[Lien vers le groupe Signal](https://signal.group/#CjQKIAi5hEPZAURQ1OeINzRVDwUPLTTC_m44DvLV4bm3OTOIEhA2xOrPcBxVDOXPx30bU0_k)
|
[Lien vers le groupe Signal](https://signal.group/#CjQKIAi5hEPZAURQ1OeINzRVDwUPLTTC_m44DvLV4bm3OTOIEhA2xOrPcBxVDOXPx30bU0_k)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,15 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="fr">
|
<html lang="fr">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
<title>{{ .Title }} - {{ .Site.Title }}</title>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
|
<link rel="stylesheet" href="/css/index.css">
|
||||||
|
<link rel="stylesheet" href="/css/content.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
|
|
@ -13,9 +17,12 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/about">À propos</a></li>
|
<li><a href="/about">À propos</a></li>
|
||||||
<li><a href="/contact">Contact</a></li>
|
<li><a href="/contact">Contact</a></li>
|
||||||
<li><a href="https://www.repaircafe.org/fr/" class="btn-nav" target="_blank" rel="noopener noreferrer">Repair Café</a></li>
|
<li><a href="https://www.repaircafe.org/fr/" class="btn-nav" target="_blank"
|
||||||
<li><a href="https://adieuwindows.april.org/" class="btn-nav" target="_blank" rel="noopener noreferrer">Adieu Windows</a></li>
|
rel="noopener noreferrer">Repair Café</a></li>
|
||||||
<li><a href="https://www.agendadulibre.org/" class="btn-nav" target="_blank" rel="noopener noreferrer">Prochaines dates</a></li>
|
<li><a href="https://adieuwindows.april.org/" class="btn-nav" target="_blank"
|
||||||
|
rel="noopener noreferrer">Adieu Windows</a></li>
|
||||||
|
<li><a href="https://www.agendadulibre.org/" class="btn-nav" target="_blank"
|
||||||
|
rel="noopener noreferrer">Prochaines dates</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
@ -28,4 +35,5 @@
|
||||||
<p>© {{ now.Year }} Repair Café du Haut-Salat</p>
|
<p>© {{ now.Year }} Repair Café du Haut-Salat</p>
|
||||||
</footer>
|
</footer>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<content>
|
<section class="content">
|
||||||
<h1>{{ .Title }}</h1>
|
<h2>{{ .Title }}</h2>
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</content>
|
</section>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
@ -1,16 +1,28 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<section class="maintitle">
|
<div class="index">
|
||||||
|
<section class="maintitle">
|
||||||
<h1>Repair Café du Haut Salat</h1>
|
<h1>Repair Café du Haut Salat</h1>
|
||||||
<p>Diagnostiquer, réparer, transmettre</p>
|
<p>Diagnostiquer, réparer, transmettre</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="repair-dates">
|
<section class="repair-dates">
|
||||||
<h2>Lab Place</h2>
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h2>Événements</h2>
|
||||||
|
</div>
|
||||||
|
<div class="event">
|
||||||
<p class="date">Dernier samedi du mois, de 14h à 18h</p>
|
<p class="date">Dernier samedi du mois, de 14h à 18h</p>
|
||||||
<p class="lieu">Lab Place, route d’Aulus à Oust</p>
|
<p class="lieu">Lab Place, route d’Aulus à Oust</p>
|
||||||
</section>
|
</div>
|
||||||
|
<div class="event">
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
<h3>Plus à venir</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section class="presentation">
|
<section class="presentation">
|
||||||
<h2>Qu'est-ce que le Repair Café du Haut Salat ?</h2>
|
<h2>Qu'est-ce que le Repair Café du Haut Salat ?</h2>
|
||||||
<p>Une équipe de bénévoles est présente pour aider à réparer des objets cassés, installer Linux
|
<p>Une équipe de bénévoles est présente pour aider à réparer des objets cassés, installer Linux
|
||||||
ou former à l’utilisation des logiciels libres/trouver des alternatives.</p>
|
ou former à l’utilisation des logiciels libres/trouver des alternatives.</p>
|
||||||
|
|
@ -34,5 +46,6 @@
|
||||||
<p>
|
<p>
|
||||||
Le Repair Café est gratuit.
|
Le Repair Café est gratuit.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
52
static/css/content.css
Normal file
52
static/css/content.css
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
.content {
|
||||||
|
padding: 2rem;
|
||||||
|
border-radius: 8px;
|
||||||
|
color: #2e2c7e;
|
||||||
|
background-color: #e1e1e1;
|
||||||
|
padding: 1.5rem;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content h1 {
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
font-size: 2.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content h2 {
|
||||||
|
margin-top: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
font-size: 1.8rem;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content h3 {
|
||||||
|
color: #EF694A;
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content p {
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
margin-left: 2rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content ul,
|
||||||
|
.content ol {
|
||||||
|
margin-left: 2rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content li {
|
||||||
|
margin-left: 2rem;
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
|
}
|
||||||
111
static/css/index.css
Normal file
111
static/css/index.css
Normal file
|
|
@ -0,0 +1,111 @@
|
||||||
|
.index {
|
||||||
|
background-color: #e1e1e1;
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 0 5rem 1rem 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index section {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
padding-bottom: 0;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .maintitle {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .maintitle h1 {
|
||||||
|
padding-top: 3rem;
|
||||||
|
font-size: 3.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #2e2c7e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .maintitle p {
|
||||||
|
padding-top: 1.5rem;
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #EF694A;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates h2 {
|
||||||
|
color: #2e2c7e;
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates p {
|
||||||
|
color: #2e2c7e;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates h3 {
|
||||||
|
color: #2e2c7e;
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates {
|
||||||
|
text-align: center;
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates .date {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #EF694A;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .repair-dates .lieu {
|
||||||
|
color: #2e2c7e;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .container {
|
||||||
|
display: grid;
|
||||||
|
grid-template-areas:
|
||||||
|
"header header"
|
||||||
|
"event event"
|
||||||
|
"footer footer";
|
||||||
|
grid-template-columns: 2fr 2fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .container div.header {
|
||||||
|
grid-area: header;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .container div.footer {
|
||||||
|
grid-area: footer;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .container div.event {
|
||||||
|
grid-area: event;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
border: 1px solid black;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .presentation {
|
||||||
|
padding: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .presentation h2 {
|
||||||
|
color: #2e2c7e;
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 0.5rem;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.index .presentation p {
|
||||||
|
color: #2e2c7e;
|
||||||
|
font-size: 1rem;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
|
@ -6,9 +6,8 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
line-height: 1.6;
|
|
||||||
color: #2e2c7e;
|
color: #2e2c7e;
|
||||||
background: #e1e1e1;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
|
@ -56,131 +55,9 @@ nav a:hover {
|
||||||
|
|
||||||
main {
|
main {
|
||||||
max-width: 1200px;
|
max-width: 1200px;
|
||||||
margin: 2rem auto;
|
|
||||||
padding: 0 2rem;
|
|
||||||
min-height: 60vh;
|
min-height: 60vh;
|
||||||
}
|
background-color: white;
|
||||||
|
margin: auto;
|
||||||
.maintitle {
|
|
||||||
text-align: center;
|
|
||||||
padding: 4rem 2rem;
|
|
||||||
background: white;
|
|
||||||
color: #2e2c7e;
|
|
||||||
margin: -2rem -2rem 3rem -2rem;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.maintitle h1 {
|
|
||||||
font-size: 3rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2e2c7e;
|
|
||||||
}
|
|
||||||
|
|
||||||
.maintitle p {
|
|
||||||
font-size: 1.4rem;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #EF694A;
|
|
||||||
}
|
|
||||||
|
|
||||||
section {
|
|
||||||
margin: 3rem 0;
|
|
||||||
padding: 2rem;
|
|
||||||
background: white;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
section h2 {
|
|
||||||
color: #2e2c7e;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
font-size: 2rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
section h3 {
|
|
||||||
color: #EF694A;
|
|
||||||
margin-top: 1.5rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
section p {
|
|
||||||
font-size: 1.1rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
color: #2e2c7e;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repair-dates {
|
|
||||||
background: white;
|
|
||||||
border: 3px solid #EF694A;
|
|
||||||
text-align: center;
|
|
||||||
padding: 3rem 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repair-dates h2 {
|
|
||||||
color: #2e2c7e;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.date {
|
|
||||||
font-size: 2rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #EF694A;
|
|
||||||
margin: 1rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lieu {
|
|
||||||
font-size: 1.3rem;
|
|
||||||
color: #2e2c7e;
|
|
||||||
}
|
|
||||||
|
|
||||||
.presentation {
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
content {
|
|
||||||
padding: 2rem;
|
|
||||||
background: white;
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
content h1 {
|
|
||||||
color: #2e2c7e;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-size: 2.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
content h2 {
|
|
||||||
color: #2e2c7e;
|
|
||||||
margin-top: 2rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 1.8rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
content h3 {
|
|
||||||
color: #EF694A;
|
|
||||||
margin-top: 1.5rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 1.4rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
content p {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
color: #2e2c7e;
|
|
||||||
}
|
|
||||||
|
|
||||||
content ul, content ol {
|
|
||||||
margin-left: 2rem;
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
font-size: 1.1rem;
|
|
||||||
color: #2e2c7e;
|
|
||||||
}
|
|
||||||
|
|
||||||
content li {
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue