MainFooter.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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"
  40. ><img
  41. class="musareFooterLogo"
  42. src="/assets/wordmark.png"
  43. alt="Musare"
  44. /></a>
  45. <p>
  46. © Copyright Musare 2015 - 2019
  47. </p>
  48. </div>
  49. </div>
  50. </footer>
  51. </template>
  52. <style lang="scss" scoped>
  53. .content a:not(.button) {
  54. border: 0;
  55. }
  56. .content {
  57. display: flex;
  58. align-items: center;
  59. flex-direction: column;
  60. }
  61. .footer {
  62. border-radius: 33% 33% 0% 0% / 7% 7% 0% 0%;
  63. box-shadow: 0 4px 8px 0 rgba(3, 169, 244, 0.65),
  64. 0 6px 20px 0 rgba(3, 169, 244, 0.4);
  65. background-color: #ffffff;
  66. margin-top: 50px;
  67. padding-bottom: 25px;
  68. width: 100%;
  69. .musareFooterLogo {
  70. display: block;
  71. margin-left: auto;
  72. margin-right: auto;
  73. margin-bottom: 15px;
  74. width: 200px;
  75. }
  76. }
  77. .icon:hover {
  78. color: #90298c !important;
  79. }
  80. .nightMode {
  81. .footer {
  82. background-color: rgb(51, 51, 51);
  83. .content {
  84. color: #e6e6e6;
  85. }
  86. }
  87. }
  88. </style>