WIP proto site web

This commit is contained in:
Quentin 2020-02-28 15:05:17 +01:00
parent 6fdd3edd04
commit dd8797c753
10 changed files with 87 additions and 15 deletions

View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,11 +1,15 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<title>deuxfleurs</title> <title>💮💮 deuxfleurs</title>
<meta charset="utf-8"/> <meta charset="utf-8"/>
<style> <style>
@font-face {
font-family: "Heroes";
src: url('fonts/texgyreheros-regular.otf') format('truetype');
}
* { * {
font-family: Helvetica; font-family: Heroes;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
@ -13,34 +17,102 @@
header { header {
background-color: #519c60; background-color: #519c60;
color: #ffffff; color: #ffffff;
padding: 50px 40px 1px 40px; padding: 50px 0px 1px 0px;
} }
header > h1 { h1 {
font-size: 80px; font-size: 5em;
margin: 10px 0px -31px 0px;
} }
header > .site-name > img, header > .site-name > span { h2 {
vertical-align: middle; font-size: 3em;
} }
header > .site-name > span { .spacing {
margin-top: 1em;
}
header > .container > h1 {
margin: 10px 0px -27px 0px;
}
header > .container > .site-name > img {
vertical-align: -9px;
}
header > .container > .site-name > a {
font-size: 30px; font-size: 30px;
color: white;
text-decoration: none;
} }
.container {
padding: 0px 40px 0px 40px;
}
.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;
}
</style> </style>
</head> </head>
<body> <body>
<header> <header>
<!-- <div class="site-name"> <div class="container">
<img src="1f4ae.svg" width="32"> <div class="site-name" style="float:right">
<img src="1f4ae.svg" width="32"> <a href="./prototype.html">deuxfleurs</a>
<span>deuxfleurs<span> <img src="img/flower.svg" width="38">
</div> --> <img src="img/flower.svg" width="38">
<h1>documentation</h1> </div>
<h1>notre internet</h1>
</div>
</header> </header>
<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">
<h2>et vous permet de</h2>
<div class="list" />
<a href="" class="service-box spacing">
<div style="font-size: 80px">💬</div>
<h3>chatter</h3>
</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>
</body> </body>
</html> </html>