This repository has been archived on 2019-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
PILG/css/miseEnPage.css
Geoffrey Frogeye 166f0e9819 Ajout d'un site web
Pour la présentation du 5/05/14
* Générateur
	* En nodejs
	* Se base sur les fichiers .md de la branche master sur GitHub
	* Sépare À propos et Compilation dans README.md
* Conforme GitHub Pages
2014-04-26 20:39:24 +02:00

52 lines
708 B
CSS

#wrapper {
margin-top: 50px;
}
nav {
background-color: #333;
text-align: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 10000;
}
nav ul {
margin: 5px 0px 5px 0px;
}
nav li {
display: inline-block;
font-size: larger;
}
nav a {
position: relative;
display: inline-block;
color: #fff;
text-decoration: none;
border-radius: 8px;
padding: 5px;
transition: background-color .2s ease-in-out;
}
nav ul li:before {
content: '•';
color: #aaa;
margin: 0px 5px 0px 5px;
display: inline-block;
}
nav ul li:first-child:before {
content : '';
}
nav a:hover {
background: #222;
}
nav a:active {
background: #444;
}