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.
 
 
 
 
 

55 lines
821 B

  1. <template>
  2. <div id="app">
  3. <header>
  4. <span>Vue.js PWA</span>
  5. </header>
  6. <main>
  7. <img src="./assets/logo.png" alt="Vue.js PWA">
  8. <router-view></router-view>
  9. </main>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. name: 'app'
  15. }
  16. </script>
  17. <style>
  18. body {
  19. margin: 0;
  20. }
  21. #app {
  22. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. color: #2c3e50;
  26. }
  27. main {
  28. text-align: center;
  29. margin-top: 40px;
  30. }
  31. header {
  32. margin: 0;
  33. height: 56px;
  34. padding: 0 16px 0 24px;
  35. background-color: #35495E;
  36. color: #ffffff;
  37. }
  38. header span {
  39. display: block;
  40. position: relative;
  41. font-size: 20px;
  42. line-height: 1;
  43. letter-spacing: .02em;
  44. font-weight: 400;
  45. box-sizing: border-box;
  46. padding-top: 16px;
  47. }
  48. </style>