MainFooter.vue 880 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <footer class='footer'>
  3. <div class='container'>
  4. <div class='content has-text-centered'>
  5. <p>
  6. © Copyright Musare 2015 - 2016
  7. </p>
  8. <p>
  9. <a class='icon' href='https://github.com/Musare/MusareNode' title='GitHub Repository'>
  10. <i class='fa fa-github'></i>
  11. </a>
  12. <a class='icon' href='https://twitter.com/MusareMusic' title='Twitter Account'>
  13. <i class='fa fa-twitter'></i>
  14. </a>
  15. <a class='icon' href='https://www.facebook.com/MusareMusic/' title='Facebook Page'>
  16. <i class='fa fa-facebook'></i>
  17. </a>
  18. <a class='icon' href='https://discord.gg/Y5NxYGP' title='Discord Server'>
  19. <img src='/assets/discord.svg'/>
  20. </a>
  21. </p>
  22. </div>
  23. </div>
  24. </footer>
  25. </template>
  26. <style lang='scss' scoped>
  27. .content a:not(.button) {
  28. border: 0;
  29. }
  30. .icon:visited {
  31. color: #4a4a4a !important;
  32. }
  33. </style>