-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlanding.html
53 lines (52 loc) · 1.25 KB
/
landing.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>calendrier.api.gouv.fr</title>
<style>
@media (min-width: 768px){
body {
padding-top: 150px;
}
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 16px;
color: #333;
background: linear-gradient(155deg, #523993, #0053b3) fixed;
}
.content {
background: #fff;
margin: 0 auto;
max-width: 650px;
padding: 1em 2em;
border-radius: 15px;
}
h1 {
font-size: 3em;
}
ul {
margin-bottom: 2em;
}
li {
margin-bottom: .5em;
}
a:hover {
color: #333;
text-decoration: none;
}
</style>
</head>
<body>
<div class="content">
<h1>calendrier.api.gouv.fr</h1>
<ul>
<li><a href="https://calendrier.api.gouv.fr/jours-feries/" title="API JSON jours fériés">API jours fériés</a></li>
</ul>
<p>
Retrouvez le code source <a href="https://github.com/etalab/calendrier.api.gouv.fr" title="Dépôt GitHub">sur GitHub</a>.
</p>
</div>
</body>
</html>