All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dotty_res.styles.theme.layout.footer.css Maven / Gradle / Ivy

There is a newer version: 3.6.0-RC1-bin-20240903-21a3d39-NIGHTLY
Show newest version
#footer {
  position: absolute;
  bottom: 0;
  background-color: var(--action-primary-background-default-solid);
  height: calc(6 * var(--base-spacing));
  width: 100%;
  padding: calc(2 * var(--base-spacing));
  display: flex;
  align-items: center;
  color: var(--text-primary);
  box-sizing: border-box;
  flex-wrap: wrap;
  z-index: 100;
}

#footer .left-container {
  display: flex;
}

#footer .left-container::after {
  content: url(../../../images/footer-icon/light/default.svg);
  margin-left: calc(1 * var(--base-spacing));
}

.theme-dark #footer .left-container::after {
  content: url(../../../images/footer-icon/dark/default.svg);
}

#footer .right-container {
  margin-left: auto;
  display: flex;
}

#footer .right-container a {
  margin-right: calc(1.5 * var(--base-spacing));
}

#footer .right-container a:last-of-type {
  margin-right: calc(2 * var(--base-spacing));
}

#footer .text-mobile {
  display: none;
}

#footer.mobile-footer {
  display: none;
  justify-content: center;
}

@media (max-width: 480px) {

  #footer {
    display: none;
  }

  #footer.mobile-footer {
    display: flex;
    position: unset;
    height: calc(9 * var(--base-spacing));
  }

  #footer .text-mobile {
    display: none;
  }

  #footer.mobile-footer .text-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: calc(1 * var(--base-spacing));
  }

  #footer .right-container .text {
    display: none;
  }

  #footer.mobile-footer > .text-mobile {
    display: flex;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy