indexiGor/style.css

95 lines
1.3 KiB
CSS
Raw Normal View History

2014-06-08 11:46:46 +02:00
/* La page id-libre.org : l'accueil */
2014-06-09 11:43:42 +02:00
html, body, article, ul, li {
margin: 0px;
padding: 0px;
}
2014-06-08 11:46:46 +02:00
body {
2014-06-09 11:43:42 +02:00
width: 100%;
2014-06-08 11:46:46 +02:00
}
2014-06-09 11:43:42 +02:00
nav {
max-width: 80%;
margin: 0px auto;
}
ul {
list-style: none outside none;
}
li {
2014-06-09 11:49:15 +02:00
width: 23%;
2014-06-09 11:43:42 +02:00
height: 0px;
2014-06-09 11:49:15 +02:00
padding-bottom: 23%;
2014-06-09 11:43:42 +02:00
margin: 1%;
text-align: center;
background-color: rgba(34, 34, 34, .8);
color: rgba(231, 231, 231, .7);
font-size: 200%;
float: left;
border-radius: 3px;
}
2014-06-09 11:49:15 +02:00
a {
padding-top: 40%;
text-decoration: none;
}
2014-06-09 11:43:42 +02:00
/* #accueil {
2014-06-08 11:46:46 +02:00
margin: 0px auto;
2014-06-09 11:43:42 +02:00
max-width: 80%;
2014-06-08 11:46:46 +02:00
}
a {
text-decoration: none;
2014-06-08 11:52:38 +02:00
padding-top: 40%;
2014-06-08 11:46:46 +02:00
}
2014-06-09 11:43:42 +02:00
ul {
list-style: none outside none;
margin: 0px;
padding: 1%;
}
2014-06-08 11:46:46 +02:00
.entree {
2014-06-09 11:43:42 +02:00
margin: 1%;
width: 24%;
2014-06-08 11:46:46 +02:00
height: 0px;
2014-06-09 11:43:42 +02:00
padding-bottom: 24%;
2014-06-08 11:46:46 +02:00
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 {
2014-06-08 11:52:38 +02:00
width: 25%;
padding-bottom: 25%;
2014-06-08 11:46:46 +02:00
}
}
.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;
}
2014-06-09 11:43:42 +02:00
*/