index.vue 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <template>
  2. <div>
  3. <svg id="thumbslogo" width="150" height="150" viewBox="0 0 240 240" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;"><path d="M139.113,65.266l-57.339,-0c-5.288,-0 -9.812,3.185 -11.723,7.772l-19.241,44.916c-0.573,1.466 -0.892,2.995 -0.892,4.651l0,12.742c0,7.009 5.734,12.743 12.742,12.743l40.202,-0l-6.053,29.115l-0.191,2.039c0,2.612 1.083,5.033 2.803,6.754l6.754,6.689l41.985,-41.985c2.294,-2.294 3.695,-5.479 3.695,-8.984l0,-63.71c0,-7.009 -5.734,-12.742 -12.742,-12.742Zm25.485,-0l-0,76.452l25.484,0l-0,-76.452l-25.484,-0Z" style="fill:url(#_Linear1);fill-rule:nonzero;"/><g id="Thumb-Down--m.io-" serif:id="Thumb Down (m.io)"></g><defs><linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(152.906,153.295,-153.295,152.906,43.6442,45.958)"><stop offset="0" style="stop-color:#ff4444;stop-opacity:1"/><stop offset="0.56" style="stop-color:#4c0000;stop-opacity:1"/><stop offset="1" style="stop-color:#000;stop-opacity:1"/></linearGradient></defs></svg>
  4. <h1 style="font-size: 3em; margin-bottom:0;">Return YouTube Dislike</h1>
  5. <div style="color: #999">
  6. <p style="margin-top: 0">Browser extension and an API that show you dislikes on youtube</p>
  7. </div>
  8. <v-btn :to="installLink" color="primary lighten-1" style="font-size: 1.5em; padding: 1em; margin-bottom: 0.5em;">
  9. <v-icon large style="margin-right: 0.5em;">mdi-tray-arrow-down</v-icon>
  10. Install
  11. </v-btn>
  12. <br>
  13. <v-btn class="mainAltButton" :href="githubLink" target="_blank">
  14. <v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
  15. GitHub
  16. </v-btn>
  17. <v-btn class="mainAltButton" :href="discordLink" target="_blank">
  18. <v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
  19. Discord
  20. </v-btn>
  21. </div>
  22. </template>
  23. <style scoped>
  24. #thumbslogo {
  25. opacity: 0;
  26. transform: scale(0) rotate(180deg);
  27. margin-top: -150px;
  28. animation: popin 1s 1s ease-in-out 1 forwards, thumbsflip 2s 3s ease-in-out infinite alternate;
  29. }
  30. @keyframes popin {
  31. 0% {
  32. transform: rotate(180deg) scale(0.5);
  33. opacity: 0;
  34. } 100% {
  35. transform: rotate(0deg) scale(1);
  36. opacity: 1;
  37. }
  38. }
  39. @keyframes thumbsflip {
  40. 0% {
  41. transform: rotate(0deg) scale(1);
  42. } 50% {
  43. transform: rotate(0) scale(1);
  44. } 100% {
  45. transform: rotate(180deg) scale(.9);
  46. }
  47. }
  48. </style>
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. installLink: "/install",
  54. githubLink: "https://github.com/Anarios/return-youtube-dislike",
  55. discordLink: "https://discord.gg/mYnESY4Md5",
  56. }
  57. }
  58. }
  59. </script>