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.
 
 
 
 
 

53 lignes
907 B

  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. body
  18. margin: 0
  19. html
  20. font-family: Avenir, Helvetica, Arial, sans-serif
  21. -webkit-font-smoothing: antialiased
  22. -moz-osx-font-smoothing: grayscale
  23. color: $blizzard-font-color
  24. text-shadow: 0 0 1rem #009cff
  25. background-color: $blizzard-background-color
  26. main
  27. margin-top: 20px
  28. header
  29. margin: 0
  30. height: 56px
  31. padding: 0 16px 0 24px
  32. +blizzard-header-gradient
  33. text-shadow: 0 0 1rem #009cff
  34. color: #fff
  35. span
  36. display: block
  37. position: relative
  38. font-size: 20px
  39. line-height: 1
  40. letter-spacing: .02em
  41. font-weight: 400
  42. box-sizing: border-box
  43. padding-top: 16px
  44. </style>