oazaSrdceWeb / css / fotogalery.css
fotogalery.css
Raw
@font-face {
  font-family: "Faculty";
  src: url("font/FacultyGlyphic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.spacer {
  height: 100px;
}
.spacer2 {
  height: 70px;
}
.spacer3 {
  height: 5px;
}
.spacer4 {
  height: 20px;
}
.spacer50 {
  height: 50px;
}

.heading2 {
  font-family: "Faculty", sans-serif;
  font-size: 55px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: #0071bc;
}

.biggerGone {
  display: none;
}
/*
  NAVBAR SECTION
  */

nav {
  background: linear-gradient(180deg, #a5d2fc, #ffff, #a5d2fc);
}
.navLinks {
  font-weight: 400;
  font-size: 20px;
  font-family: "Faculty", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navLinks .link {
  width: 60px;
  position: relative;
  padding-bottom: 10px;
  text-decoration: none;
}
.navLinks .link a {
  color: #0071bc;
}
.navLinks .link a:hover {
  color: #0c8ce1;
  text-decoration: none;
}

.navLinks .expandable .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(180deg, #a5d2fc, #ffff, #ffff, #a5d2fc);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.navLinks .expandable:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  color: black;
}

.submenu a:hover {
  text-decoration: none;
}

/*
  NAVBAR SECTION END
  -----
  */

/*
  GALERY SECTION 
  -----
  */
.galery {
  background: linear-gradient(180deg, #a5d2fc, #d0e7fb, #a5d2fc, #d0e7fb);
}

.galery .photos img {
  width: 100%;
  height: 100%;
  max-width: 350px;
  max-height: 265px;
  margin: 10px;
  border: 4px white solid;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out; /* Plynulý přechod pro transformaci */
}

.galery .photos img:hover {
  transform: scale(1.05); /* Mírné zvětšení obrázku */
}

.smallerH img {
  width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.modal-header {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Zarovnání doprava */
  border-bottom: none; /* Odstranění spodního okraje */
  position: relative; /* Pro relativní pozicování tlačítka zavření */
}

.modal-header .close {
  position: absolute;
  top: -7px;
  right: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 5;
  color: white;
}

.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}

.modal-body {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-body img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh; /* Obrázek nepřesáhne 80 % výšky okna */
  border-radius: 5px;
}
/*
  GALERY SECTION END
  -----
  */

/* Větší tablet & menší notebook */
@media (min-width: 992px) and (max-width: 1200px) {
  .biggerTabletShow {
    display: block;
  }
}
/* Větší tablet & menší tablet */
@media (min-width: 768px) and (max-width: 992px) {
  .showTablet {
    display: block;
  }
}
/* Tablet & mobil */
@media (min-width: 576px) and (max-width: 768px) {
  .hideSmTablet {
    display: none;
  }
  .galery .photos img {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
  }
}
/* Mobilní styl */
@media (max-width: 576px) {
  .smallGone {
    display: none;
  }
  .smallShow {
    display: block;
  }
}