Premier commit

master
iGor milhit 2014-06-08 11:39:27 +02:00
commit 21071bb5fa
3 changed files with 121 additions and 0 deletions

9
README.md 100644
View File

@ -0,0 +1,9 @@
# indexiGor
Début d'un tout petit projet de page d'accueil pour un nom de domaine, dont l'idée ressemble à [id-libre.org](http://id-libre.org). Il s'agit d'améliorer cette page.
Le tout est fait en HTML/CSS. En partie inspiré du template [darksideboard.html](https://github.com/sebsauvage/MinigalNano/blob/master/templates/darksideboard.html) de MinigalNano.
## todo
Euh. Tout ?

51
accueil.css 100644
View File

@ -0,0 +1,51 @@
/* La page id-libre.org : l'accueil */
#accueil {
margin: 0px auto;
max-width: 60%;
}
a {
text-decoration: none;
padding-top: 35%;
}
.entree {
margin: 1em;
width: 25%;
height: 0px;
padding-bottom: 25%;
overflow: hidden;
text-align: center;
background-color: rgba(34, 34, 34, .8);
color: rgba(231, 231, 231, .7);
font-size: 200%;
float: left;
vertical-align: middle;
border-radius: 3px;
}
@media (max-width: 1000px) {
.entree {
width: 35%;
padding-bottom: 35%
}
}
.entree:hover {
text-decoration: none;
color: rgba(231, 231, 231, 1);
background-color: rgba(34, 34, 34, .5);
}
.entree a {
display: block;
width: 100%;
height: 100%;
color: rgba(231, 231, 231, .7);
}
.entree:hover a {
text-decoration: none;
}

61
index.html 100644
View File

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Titre de la page d'accueil</title>
<meta name="description" content="description de la page d'accueil" >
<meta name="keywords" content="quelques mots clés" >
<!-- <link rel="icon" href="img/favicon.ico" > -->
<link rel="stylesheet" href="accueil.css" media="screen">
</head>
<body>
<article id="accueil"> <!-- Le contenant de la page -->
<p class="entree">
<a href="" title="">entrée 01</a>
</p>
<p class="entree">
<a href="#" title="">entrée 02</a>
</p>
<p class="entree">
<a href="" title="">entrée 03</a>
</p>
<p class="entree">
<a href="#" title="">entrée 04</a>
</p>
<p class="entree">
<a href="" title="">entrée 05</a>
</p>
<p class="entree">
<a href="#" title="">entrée 06</a>
</p>
<p class="entree">
<a href="#" title="">entrée 07</a>
</p>
<p class="entree">
<a href="" title="">entrée 08</a>
</p>
<p class="entree">
<a href="#" title="">entrée 09</a>
</p>
</article>
</body>
</html>