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

VAADIN.themes.mateu.styles.scss Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
@import "mateu";
@import "addons";

// This file prefixes all rules with the theme value to avoid causing conflicts with other themes.
// The actual styles should be defined in mateumddtheme.scss

.mateu {
  @include addons;
  @include mateu;
}

@keyframes fadein {
  0% {
    background: rgba(0,0,0,0);
  }
  100% {
    background: rgba(0,0,0,.5); /* Darkens the UI */
  }
}


@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy