51 lines
703 B
CSS
51 lines
703 B
CSS
*{
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: helvetica, sans-serif;
|
|
font-size: 1rem;
|
|
line-height: 1.4;
|
|
/* COUCOU */
|
|
/*height: 100vh;*/
|
|
text-decoration: none;
|
|
/*overflow-x: hidden;*/
|
|
}
|
|
|
|
body{
|
|
/*min-height: 100vh;*/
|
|
}
|
|
|
|
p, h1, h2{
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
ul, li{
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
img{
|
|
vertical-align: bottom;
|
|
-webkit-transition: filter 0.1s; /* Safari */
|
|
transition: filter 0.1s;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
|
|
/*------------*/
|
|
#block-formulairederecherche{
|
|
display: none;
|
|
}
|