Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

36 lines
1.5 KiB

  1. // Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
  2. //
  3. // This file is part of Nexus Timers.
  4. //
  5. // Nexus Timers is free software: you can redistribute it and/or modify
  6. // it under the terms of the GNU Affero General Public License as published by
  7. // the Free Software Foundation, either version 3 of the License, or
  8. // (at your option) any later version.
  9. //
  10. // Nexus Timers is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. // GNU Affero General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU Affero General Public License
  16. // along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
  17. /**
  18. * Only add in this file pure sass code (like variables, functions and mixins) that don't get rendered
  19. * Otherwise, this code will be duplicated in each component in the final css file
  20. */
  21. // ############
  22. // ## Colors ##
  23. // ############
  24. $blizzard-background-color: #0A020F
  25. $blizzard-background-color-transparent: #0A020FCC
  26. $blizzard-font-color: #6CF
  27. @mixin blizzard-header-gradient
  28. background: #0d39a0 /* Old browsers */
  29. background: -moz-linear-gradient(left, #0d39a0 0%, #2f099b 100%) /* FF3.6-15 */
  30. background: -webkit-linear-gradient(left, #0d39a0 0%,#2f099b 100%) /* Chrome10-25,Safari5.1-6 */
  31. background: linear-gradient(to right, #0d39a0 0%,#2f099b 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */