infrastructure/docker/landing/html/landing/prototype.html

119 lines
2.2 KiB
HTML
Raw Normal View History

2020-02-08 09:57:50 +00:00
<!doctype html>
<html>
<head>
2020-02-28 14:05:17 +00:00
<title>💮💮 deuxfleurs</title>
2020-02-08 09:57:50 +00:00
<meta charset="utf-8"/>
<style>
2020-02-28 14:05:17 +00:00
@font-face {
font-family: "Heroes";
src: url('fonts/texgyreheros-regular.otf') format('truetype');
}
2020-02-08 09:57:50 +00:00
* {
2020-02-28 14:05:17 +00:00
font-family: Heroes;
2020-02-08 09:57:50 +00:00
margin: 0;
padding: 0;
}
header {
background-color: #519c60;
color: #ffffff;
2020-02-28 14:05:17 +00:00
padding: 50px 0px 1px 0px;
}
h1 {
font-size: 5em;
}
h2 {
font-size: 3em;
2020-02-08 09:57:50 +00:00
}
2020-02-28 14:05:17 +00:00
.spacing {
margin-top: 1em;
2020-02-08 09:57:50 +00:00
}
2020-02-28 14:05:17 +00:00
header > .container > h1 {
margin: 10px 0px -27px 0px;
2020-02-08 09:57:50 +00:00
}
2020-02-28 14:05:17 +00:00
header > .container > .site-name > img {
vertical-align: -9px;
}
header > .container > .site-name > a {
2020-02-08 09:57:50 +00:00
font-size: 30px;
2020-02-28 14:05:17 +00:00
color: white;
text-decoration: none;
}
.container {
padding: 0px 40px 0px 40px;
2020-02-08 09:57:50 +00:00
}
2020-02-28 14:05:17 +00:00
.chapeau {
font-size: 1.8em;
font-weight: bold;
line-height: 1.2;
}
.service-box {
color: #000;
text-decoration: none;
border: 0.2em solid #000;
width: 250px;
text-align:center;
margin-right: 1em;
}
.service-box:hover {
background-color: #000;
color: #fff;
}
.list {
display: flex;
}
2020-02-08 09:57:50 +00:00
</style>
</head>
<body>
<header>
2020-02-28 14:05:17 +00:00
<div class="container">
<div class="site-name" style="float:right">
<a href="./prototype.html">deuxfleurs</a>
<img src="img/flower.svg" width="38">
<img src="img/flower.svg" width="38">
</div>
<h1>notre internet</h1>
</div>
2020-02-08 09:57:50 +00:00
</header>
2020-02-28 14:05:17 +00:00
<main>
<div class="container spacing"/>
<div class="chapeau">⇨ protège votre vie privée</div>
<div class="chapeau">⇨ défend vos libertés et vos droits</div>
<div class="chapeau">⇨ ne vous manipule pas</div>
<section class="spacing">
2020-02-28 14:24:25 +00:00
<h2>nos services permettent de</h2>
2020-02-28 14:05:17 +00:00
<div class="list" />
<a href="" class="service-box spacing">
<div style="font-size: 80px">💬</div>
2020-02-28 14:15:10 +00:00
<h3>discuter</h3>
2020-02-28 14:05:17 +00:00
</a>
<a href="" class="service-box spacing">
<div style="font-size: 80px">📄</div>
<h3>sauvegarder vos documents</h3>
</a>
<a href="" class="service-box spacing">
<div style="font-size: 80px">📨</div>
<h3>envoyer des emails</h3>
</a>
</div>
</section>
</div>
</main>
2020-02-08 09:57:50 +00:00
</body>
</html>