1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| body {
background:#eee;
}
#bibcontent{
width: 400px;
background: #fff;
padding: 20px;
padding-top: 0;
font-family: calibri;
font-size: 12px;
color:#444;
margin: 0 auto;
max-height: 70px;
overflow: hidden;
-webkit-transition: max-height 0.7s;
-noz-transition: max-height 0.7s;
transition: max-height 0.7s;
}
#bibcontent.open{
max-height: 1000px;
-webkit-transition: max-height 0.7s;
-noz-transition: max-height 0.7s;
transition: max-height 0.7s;
}
#voirplus{
background: #1594e5;
color:#fff;
font-family: calibri;
display: block;
width: 100px;
font-size: 16px;
text-transform: uppercase;
padding: 10px;
text-align: center;
margin: 20px auto;
cursor: pointer;
} |
Partager