1234567891011121314151617181920212223242526272829303132 |
- /*
- To change this license header, choose License Headers in Project Properties.
- To change this template file, choose Tools | Templates
- and open the template in the editor.
- */
- /*
- Created on : 2/06/2020, 02:21:45 PM
- Author : Ale
- */
- .link{ cursor: pointer; overflow: hidden; }
- .link img{ width: 100%; -webkit-transition: .6s all ease; -moz-transition: .6s all ease; -o-transition: .6s all ease; -ms-transition: .6s all ease; transition: .6s all ease; }
- .link:hover img{ -webkit-transform: scale(1.1); -moz-transform: scale(1.1); -o-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }
- .textlink{ font-family: 'indivisa-display-italic'; font-size: 20px; text-shadow: 1px 1px 2px black, 0 0 25px #696969, 0 0 5px #969696; }
- .efecto{ background-image: linear-gradient(rgba(0,0,0,0) 50%,rgba(0,0,0,.7)); width: 100%; height: 100%; position: absolute; }
- /*@media (max-width:799px){
- #logo{
- min-height: 151px;
- max-height: 150px;
- }
- }
- @media (max-width:560px){
- #logo{
- min-height: 87px;
- max-height: 150px;
- }
- }
- @media (max-width:320px){
- #logo{ max-height: 70px; }
- }*/
|