Timers and other features for Heroes of the Storm
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

62 lignes
1.3 KiB

  1. <template>
  2. <div id="app">
  3. <header>
  4. <span>Nexus Timers</span>
  5. </header>
  6. <main>
  7. <router-view></router-view>
  8. </main>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'app'
  14. }
  15. </script>
  16. <style lang="sass">
  17. $blizzard-background-color: #0A020F
  18. $blizzard-font-color: #66CCFF
  19. =blizzard-header-gradient
  20. background: #0d39a0 /* Old browsers */
  21. background: -moz-linear-gradient(left, #0d39a0 0%, #2f099b 100%) /* FF3.6-15 */
  22. background: -webkit-linear-gradient(left, #0d39a0 0%,#2f099b 100%) /* Chrome10-25,Safari5.1-6 */
  23. background: linear-gradient(to right, #0d39a0 0%,#2f099b 100%) /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  24. body
  25. margin: 0
  26. html
  27. font-family: Avenir, Helvetica, Arial, sans-serif
  28. -webkit-font-smoothing: antialiased
  29. -moz-osx-font-smoothing: grayscale
  30. color: $blizzard-font-color
  31. text-shadow: 0 0 1rem #009cff
  32. background-color: $blizzard-background-color
  33. main
  34. margin-top: 20px
  35. header
  36. margin: 0
  37. height: 56px
  38. padding: 0 16px 0 24px
  39. +blizzard-header-gradient
  40. text-shadow: 0 0 1rem #009cff
  41. color: #fff
  42. span
  43. display: block
  44. position: relative
  45. font-size: 20px
  46. line-height: 1
  47. letter-spacing: .02em
  48. font-weight: 400
  49. box-sizing: border-box
  50. padding-top: 16px
  51. </style>