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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
.boiteMenu{
display: block;
float: left;
width: 120px;
height: 120px;
margin: 0px;
padding: 0px;
background: #111;
}
.boiteMenu span{
display: block;
margin: 40px auto 0px auto;
padding: 0px;
color: #fff;
font-size: 20px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
cursor: pointer;
}
#boiteUnique{
display: block;
float: left;
width: 0px;
height: 70px;
margin: 470px 0px 0px 0px;
padding: 0px;
background: url(../images/blackAlpha80.png) left top repeat;
transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-webkit-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-o-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-moz-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
}
#boiteUnique.uniqueopen{
overflow: hidden;
width: 740px;
height: 530px;
margin: 0px;
transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-webkit-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-o-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-moz-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
}
#contentUnique{
overflow: hidden;
width: 700px;
height: 0px;
margin: 0px;
padding: 0px;
transition: height 1s ease, padding 1s ease;
-webkit-transition: height 1s ease, padding 1s ease;
-o-transition: height 1s ease, padding 1s ease;
-moz-transition: height 1s ease, padding 1s ease;
}
#contentUnique.uniqueopen2{
height: 490px;
padding: 20px;
transition: height 1s ease, padding 1s ease;
-webkit-transition: height 1s ease, padding 1s ease;
-o-transition: height 1s ease, padding 1s ease;
-moz-transition: height 1s ease, padding 1s ease;
}
#boiteContact{
display: block;
float: left;
width: 0px;
height: 70px;
margin: 470px 0px 0px 0px;
padding: 0px;
background: url(../images/blackAlpha80.png) left top repeat;
transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-webkit-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-o-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
-moz-transition: width 1s ease 1s, height 1s ease, margin 1s ease;
}
#boiteContact.contactopen{
overflow: hidden;
width: 740px;
height: 530px;
margin: 0px;
transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-webkit-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-o-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
-moz-transition: width 1s ease, height 1s ease 1s, margin 1s ease 1s;
}
#contentContact{
overflow: hidden;
width: 700px;
height: 0px;
margin: 0px;
padding: 0px;
transition: height 1s ease, padding 1s ease;
-webkit-transition: height 1s ease, padding 1s ease;
-o-transition: height 1s ease, padding 1s ease;
-moz-transition: height 1s ease, padding 1s ease;
}
#contentContact.contactopen2{
height: 490px;
padding: 20px;
transition: height 1s ease, padding 1s ease;
-webkit-transition: height 1s ease, padding 1s ease;
-o-transition: height 1s ease, padding 1s ease;
-moz-transition: height 1s ease, padding 1s ease;
} |