1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- 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 : 3/06/2020, 08:31:25 PM
- Author : Ale
- */
- figure .anuncio{
- width: 660px;
- max-width: 660px;
- }
- figure .fondo{
- background: url(../../img/fondo.webp);
- border-left: 0 !important;
- border-right: 0 !important;
- border-bottom: 10px solid #001D68 !important;
- border-top: 10px solid #001D68 !important;
- }
- figure .fondo .imgAnuncio{
- background-size: contain;
- width: 500px;
- height: 225px;
- border: 0;
- margin: 0 auto;
- }
- figure .txt1Fig, figure .txt2Fig, figure .txt3Fig{
- font-family: 'indivisa-text-bold';
- line-height: 1;
- }
- figure .txt1Fig{
- font-size: 5rem;
- }
- figure .txt2Fig{
- font-size: 3rem;
- }
- figure .txt3Fig{
- font-size: 1.75rem;
- }
- #espacio{
- height: 70px;
- }
- @media (max-width:799px){
- figure .anuncio{ width: 500px !important; }
- figure .fondo .imgAnuncio{
- width: 400px;
- height: 181px;
- }
- figure .txt1Fig{ font-size: 4rem; }
- figure .txt2Fig{ font-size: 2rem; }
- figure .txt3Fig{ font-size: 1.5rem; }
- }
- @media (max-width:560px){
- figure .anuncio{ width: 300px !important; }
- figure .fondo .imgAnuncio{
- width: 250px;
- height: 113px;
- }
- figure .txt1Fig{ font-size: 2.75rem; }
- figure .txt2Fig{ font-size: 1.75rem; }
- figure .txt3Fig{ font-size: 1rem; }
- }
- @media (max-width:320px){
- figure .anuncio{ width: 200px !important; }
- figure .fondo .imgAnuncio{
- width: 150px;
- height: 68px;
- }
- figure .txt1Fig{ font-size: 1.75rem; }
- figure .txt2Fig{ font-size: 1.25rem; }
- }
|