2013-07-18 01:23:48 +02:00

124 lines
1.4 KiB
Plaintext

/* manager.css */
#manager_box_place{
position:fixed;
height:0;
width:100%;
z-index:1500;
top:40px;
margin:0px;
padding:0px;
display:none;
}
#manager_box{
position:relative;
width:98%;
height:95%;
overflow:auto;
margin:auto;
margin-top:0px;
background:white;
box-shadow: rgba(0,0,0,0.8) 1px 1px 50px;
}
#manager_box_place.manager_box_place_active{
height:95%;
}
#image_files .image_file .img {
text-align:center;
width:150px;
height:150px;
margin:0px;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
-moz-background-size: contain;
-webkit-background-size: contain;
}
#image_files .image_file .name {
padding:4px 0px 2px 0px;
font-size:10px;
text-align:center;
}
#image_files .image_file {
float:left;
padding:8px;
margin:2px;
border:4px solid #eff2f2;
/* webkit */
-webkit-transition-property: background-color;
-webkit-transition-duration: 0.5s;
/* Firefox */
-moz-transition-property: background-color;
-moz-transition-duration: 0.5s;
/* standardisé */
transition-property: background-color;
transition-duration: 0.5s;
}
#image_files .image_file.active {
background-color: rgba(46,119,187,0.3);
}
/* Aperçu des images */
#image_files_big_container{
position:absolute;
top:0px;
left:0px;
bottom:40px;
right:0px;
overflow:auto;
}
#albums{
ul{
padding-top: 1.2em;
width:20%;
position:absolute;
top:0px;left:1em;
}
}