/* Imágenes Vintage ----------------------------------------------- */ .vintage img { padding:0; float:left; } .vintage { border:10px solid #000; border-radius: 10px; position: relative; float: left; /* Cambiar por right si quieres que las imágenes se alineen a la derecha */ margin-right: 20px; margin-bottom: 20px; } .vintage:before { content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background-color: rgba(255,0,0, 0.5); /* rojo */ background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgQcOPIccgII31mwgwnJGp8-EBdNEFKD0EUM1v3WgLIkBPRy2RUtAV9D3LbquRCKSzFwckwjrDjz1xaY0_MBYCQ1pwweYmxDT-rbtFHFIkuG6ERebx-Hm2HAQ4cW91Wev8-FT6daO1RCuM/s0/grunge.png); background-size: cover; box-shadow: inset 0 0 50px rgba(0,0,0, 0.5), inset 0 0 50px rgba(0,0,0, 0.5), inset 0 0 50px rgba(0,0,0, 0.5); -moz-transition: all 0.4s; -webkit-transition: all 0.4s; -o-transition: all 0.4s; transition: all 0.4s; } .vintage:hover:before { background: none; box-shadow:none; }