MainFooter.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <footer class="footer">
  3. <div class="container">
  4. <div class="content has-text-centered">
  5. <p>
  6. <a
  7. class="icon"
  8. href="https://github.com/Musare/MusareNode"
  9. target="_blank"
  10. title="GitHub Repository"
  11. >
  12. <img src="/assets/social/github.svg" />
  13. </a>
  14. <a
  15. class="icon"
  16. href="https://twitter.com/MusareApp"
  17. target="_blank"
  18. title="Twitter Account"
  19. >
  20. <img src="/assets/social/twitter.svg" />
  21. </a>
  22. <a
  23. class="icon"
  24. href="https://www.facebook.com/MusareMusic/"
  25. target="_blank"
  26. title="Facebook Page"
  27. >
  28. <img src="/assets/social/facebook.svg" />
  29. </a>
  30. <a
  31. class="icon"
  32. href="https://discord.gg/Y5NxYGP"
  33. target="_blank"
  34. title="Discord Server"
  35. >
  36. <img src="/assets/social/discord.svg" />
  37. </a>
  38. </p>
  39. <a href="https://musare.com" target="_blank"><img class="musareFooterLogo" src="/assets/wordmark.png" alt="Musare"></a>
  40. <p>
  41. © Copyright Musare 2015 - 2019
  42. </p>
  43. </div>
  44. </div>
  45. </footer>
  46. </template>
  47. <style lang="scss" scoped>
  48. .content a:not(.button) {
  49. border: 0;
  50. }
  51. .content {
  52. display: flex;
  53. align-items: center;
  54. flex-direction: column;
  55. }
  56. .footer {
  57. border-radius: 33% 33% 0% 0% / 7% 7% 0% 0%;
  58. box-shadow: 0 4px 8px 0 rgba(3, 169, 244, 0.65), 0 6px 20px 0 rgba(3, 169, 244, 0.4);
  59. background-color: #ffffff;
  60. margin-top: 50px;
  61. padding-bottom: 25px;
  62. width: 100%;
  63. .musareFooterLogo {
  64. display: block;
  65. margin-left: auto;
  66. margin-right: auto;
  67. margin-bottom: 15px;
  68. width: 200px;
  69. }
  70. }
  71. .icon:hover {
  72. color: #90298c !important;
  73. }
  74. .nightMode {
  75. .footer {
  76. background-color: rgb(51, 51, 51);
  77. .content {
  78. color: #e6e6e6;
  79. }
  80. }
  81. }
  82. </style>