styles.scss 1.61 KB
@import "scss/styles-bootstrap.scss";
@import "scss/typography.scss";
@import "scss/height-width.scss";
@import "scss/animations.scss";
@import "scss/icons.scss";
@import "scss/scroll.scss";
@import "node_modules/bootstrap/scss/_variables.scss";

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: normal;
  src: url("assets/fonts/gotham-medium.woff") format("woff");
}

html,
body {
  max-height: 100vh;
  height: 100%;
  font-family: "Gotham";
  overflow: hidden;
  user-select: none;
}

body.media-pantalla {
  height: calc(50%) !important;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #3d3d3d;
}

.btn-effect {
  transition: all 0.3s !important;
  &:hover {
    cursor: pointer !important;
    opacity: 0.7 !important;
  }
  &:active {
    transform: scale(1.02) !important;
  }
}

.cursor-pointer {
  cursor: pointer;
}

p {
  margin: 0 !important;
}

.img-in-top {
  position: absolute;
  top: -35px;
  left: 50%;
  height: 70px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-90-neg {
  transform: rotate(-90deg);
}

.rotate-180-neg {
  transform: rotate(-180deg);
}

.disabled {
  background-color: hsla(0, 0%, 100%, 0.4) !important;
}

.modal-content.media-pantalla {
  margin-top: auto !important;
  margin-bottom: 50px !important;
}

.modal-content {
  background: transparent !important;
}

.z-index {
  z-index: 1000;
}

.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}