IbtFooter.vue 712 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <md-toolbar id="footer" class="md-dense">
  3. <span><a href="https://github.com/raspibo/ibt2">ibt2</a> &copy; <a href="http://www.raspibo.org/">RaspiBO</a></span>
  4. </md-toolbar>
  5. </template>
  6. <script>
  7. export default {}
  8. </script>
  9. <style scoped>
  10. #footer {
  11. text-align: center;
  12. color: white;
  13. display: block;
  14. vertical-align: middle;
  15. min-height: 16px;
  16. left: 0px;
  17. right: 0px;
  18. bottom: 0px;
  19. position: absolute;
  20. background-color: #b3e5fc;
  21. }
  22. #footer, #footer a {
  23. color: rgba(0, 0, 0, .40);
  24. transition: color 0.5s ease;
  25. }
  26. #footer:hover, #footer:hover a {
  27. color: rgba(0, 0, 0, .87);
  28. }
  29. #footer:hover a {
  30. text-decoration: underline;
  31. }
  32. </style>