123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- /*
- 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 : 1/06/2020, 01:50:18 PM
- Author : Ale
- */
- main{
- width: 100%;
- min-height: 500px;
- height: 700px;
- }
- .container-main{
- width: 100%;
- height: 100%;
- position: relative;
- }
- .js .gr-gallery {
- position: absolute;
- width: 100%;
- height: 100%;
- overflow: hidden;
- /*background: #E8C187;*/
- background: url('../../../img/secciones/galeria/piso.webp');
- }
- .gr-room {
- position: absolute;
- top: 0;
- width: 100%;
- height: 85%;
- text-align: center;
- -webkit-perspective: 1200px;
- -moz-perspective: 1200px;
- perspective: 1200px;
- background: #FAF2E9;
- }
- .gr-wall-main,
- .gr-wall-other {
- position: absolute;
- top: 0;
- height: 100%;
- width: 100%;
- -webkit-transform-style: preserve-3d;
- -moz-transform-style: preserve-3d;
- transform-style: preserve-3d;
- border-right: 1px solid #D5CCC3;
- border-left: 1px solid #D5CCC3;
- }
- .gr-wall-main {
- left: 0;
- }
- .gr-floor {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- }
- .gr-gallery nav {
- position: absolute;
- width: 300px;
- height: 38px;
- bottom: 6%;
- left: -webkit-calc(50% - 150px);
- left: -moz-calc(50% - 150px);
- left: calc(50% - 150px);
- z-index: 0;
- cursor: pointer;
- }
- .gr-gallery nav span {
- width: 90px;
- height: 100%;
- float: left;
- overflow: hidden;
- opacity: 0.6;
- }
- .gr-gallery nav span:hover {
- opacity: 1;
- }
- .gr-gallery nav span.gr-index{
- width: 110px;
- text-align: center;
- font-size: 25px;
- font-family: 'indivisa-display';
- color: #515151;
- opacity: 1;
- cursor: default;
- }
- .gr-gallery nav span.gr-next {
- background-position: top right;
- float: right;
- }
- .gr-gallery figure {
- position: absolute;
- -webkit-transform-style: preserve-3d;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .gr-gallery figure::before {
- content: '';
- position: absolute;
- width: 180%;
- height: 150%;
- top: -45%;
- left: -40%;
- background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0.7) 23%, rgba(255,255,255,0) 66%);
- background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0.7) 23%, rgba(255,255,255,0) 66%);
- background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0.7) 23%, rgba(255,255,255,0) 66%);
- background: radial-gradient(center, ellipse cover, rgba(255,255,255,0.7) 23%, rgba(255,255,255,0) 66%);
- pointer-events: none;
- opacity: 0.5;
- }
- .gr-gallery figure div,
- .gr-gallery figure img,
- .gr-gallery figcaption {
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- }
- .gr-gallery figure div {
- position: relative;
- border: 10px solid #001D68;
- box-shadow: 0 10px 7px -5px rgba(0,0,0,0.3);
- margin-right: 20px;
- }
- .gr-gallery figure div.cartel {
- cursor: -webkit-zoom-in;
- cursor: -moz-zoom-in;
- }
- .gr-gallery figure img {
- display: block;
- margin: 0 auto;
- border: 20px solid #fff;
- }
- .gr-gallery figcaption {
- width: 150px;
- max-width: 150px;
- display: flex;
- flex-direction: column;
- background: #F0F0F0;
- color: #001D68;
- padding: 5px;
- margin-top: 20px;
- position: relative;
- text-align: left;
- cursor: default;
- box-shadow: 0 1px 2px rgba(0,0,0,0.2);
- }
- .gr-gallery figcaption span:first-of-type{
- font-size: 14px;
- font-family: 'indivisa-display-italic';
- }
- .gr-gallery figcaption span:last-of-type {
- font-size: 12px;
- font-family: 'indivisa-text';
- }
- #pared { width: 100%; height: 100%; }
- /*@media (max-width:992px) {
- .gr-gallery figure {
- -ms-transform: scale(0.75);
- transform: scale(0.75);
- }
- /*.gr-gallery figure img {
- width: calc(100% - 40px);
- }
- }*/
|