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.
 
 
 

52 line
1.3 KiB

  1. <template>
  2. <router-view/>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'App',
  7. }
  8. </script>
  9. <style>
  10. /* barlow-condensed-regular - latin */
  11. @font-face {
  12. font-family: 'Barlow Condensed';
  13. font-style: normal;
  14. font-weight: 400;
  15. src: url('fonts/barlow-condensed-v12-latin-regular.eot'); /* IE9 Compat Modes */
  16. src: local(''),
  17. url('fonts/barlow-condensed-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  18. url('fonts/barlow-condensed-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
  19. url('fonts/barlow-condensed-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
  20. url('fonts/barlow-condensed-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
  21. url('fonts/barlow-condensed-v12-latin-regular.svg#BarlowCondensed') format('svg'); /* Legacy iOS */
  22. }
  23. ::selection {
  24. color: #fcfa86;
  25. background: #000;
  26. }
  27. html {
  28. font-family: 'Barlow Condensed', sans-serif;
  29. background-color: rgb(0, 0, 0);
  30. color: rgb(255, 145, 0);
  31. }
  32. #app {
  33. font-family: 'Barlow Condensed', sans-serif;
  34. -webkit-font-smoothing: antialiased;
  35. -moz-osx-font-smoothing: grayscale;
  36. text-align: center;
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. }
  41. </style>