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 ace45137f9 Mise à jour
* Un peu de design
* Suit le commit 22bcfb2b2f
2014-04-28 15:07:47 +02:00

67 lines
904 B
CSS

body {
background-color: #ddd;
}
section {
margin-top: 50px;
}
section header, section article {
background-color: white;
border-radius: 5px;
padding: 10px;
margin: 10px;
}
header h1 {
font-size: xx-large;
}
nav {
background-color: #333;
text-align: center;
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 10000;
}
nav ul {
margin: 5px 0 5px 0;
}
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: 0 5px 0 5px;
display: inline-block;
}
nav ul li:first-child:before {
content : '';
}
nav a:hover {
background: #222;
}
nav a:active {
background: #444;
}