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
|
.main section .page_container {
position: relative;
margin: 0 auto 0;
max-width: 1100px;
z-index: 3;
}
.main section {
overflow: hidden;
}
///////////////////////////////////////
.main section.page3 {
background: #ffffff;
}
.main section.page3 .page_container {
overflow: hidden;
}
.portfolio-list
{
margin: 0;
padding: 0;
display: inline-block;
overflow: hidden;
margin-top: 100px;
}
.portfolio-list li
{
float: left;
display: block;
padding: 0;
}
.portfolio-list li img
{
width: 500px;
margin-right: 10px;
margin-left: 10px;
margin-top: 10px;
margin-bottom: 10px;
box-shadow: 1px 1px 8px #555;
z-index: 0;
position: absolute;
}
.img-alpha
{
width: 500px;
height: 500px;
position: absolute;
background: rgba( 51, 51, 51, 0.5);
z-index: 1;
}
.img-alpha:hover
{
width: 500px;
height: 500px;
position: absolute;
background: rgba( 51, 51, 51, 0.9);
z-index: 1;
} |
Partager