modFooter.vue 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div class="mod-footer">
  3. <span class="copyright">copyright © 2018,EOSGET.</span>
  4. <div class="text">{{$t('footer')}}</div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'gameFooter'
  10. }
  11. </script>
  12. <style lang='scss'>
  13. .mod-footer{
  14. width: 100%;
  15. padding: 85px 0;
  16. background-size: 100% 100%;
  17. display: -webkit-box;
  18. display: -ms-flexbox;
  19. display: flex;
  20. -webkit-box-orient: vertical;
  21. -webkit-box-direction: normal;
  22. -ms-flex-direction: column;
  23. flex-direction: column;
  24. background-color: #16093a;
  25. max-height: 268px;
  26. .copyright{
  27. color: #fff;
  28. font-size: 20px;
  29. text-align: center;
  30. margin-bottom: 30px;
  31. }
  32. .text{
  33. color: rgba(255,255,255,.5);
  34. line-height: 1.5;
  35. width: 56%;
  36. margin: 0 auto;
  37. font-size: 16px;
  38. text-align: center;
  39. }
  40. }
  41. </style>