Timers and other features for Heroes of the Storm
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

35 líneas
957 B

  1. /**
  2. * Only add in this file pure sass code (like variables, functions and mixins) that don't get rendered
  3. * Otherwise, this code will be duplicated in each component in the final css file
  4. */
  5. // ############
  6. // ## Colors ##
  7. // ############
  8. $blizzard-background-color: #0A020F
  9. $blizzard-background-color-transparent: #0A020FCC
  10. $blizzard-font-color: #6CF
  11. @mixin blizzard-header-gradient
  12. background: #0d39a0 /* Old browsers */
  13. background: -moz-linear-gradient(left, #0d39a0 0%, #2f099b 100%) /* FF3.6-15 */
  14. background: -webkit-linear-gradient(left, #0d39a0 0%,#2f099b 100%) /* Chrome10-25,Safari5.1-6 */
  15. background: linear-gradient(to right, #0d39a0 0%,#2f099b 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  16. // #################
  17. // ## Breakpoints ##
  18. // #################
  19. $xs: 0px
  20. $sm: 576px
  21. $md: 768px
  22. $lg: 992px
  23. $xl: 1200px
  24. /// A shortcut for media queries
  25. @mixin breakpoint($point)
  26. @media (min-width: $point)
  27. @content