Search.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <template>
  2. <div class="search">
  3. <form action="//search.bilibili.com/all" id="searchform">
  4. <input name="keyword" type="text" class="search-keyword" id="search-keyword" autocomplete="off" accesskey="s" x-webkit-speech="" x-webkit-grammar="builtin:translate" placeholder="这样的历史剧才靠谱!" data-recommend="av8509845">
  5. <button type="submit" class="search-submit"></button>
  6. </form>
  7. <a class="link-ranking" href="//www.bilibili.com/ranking" target="_blank">
  8. <span>排行榜</span>
  9. </a>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. }
  15. </script>
  16. <style lang="stylus">
  17. .search
  18. z-index 100
  19. width 268px
  20. height 32px
  21. background red
  22. position absolute
  23. top calc(170px - (56px - 32px) - 32px)
  24. right 0
  25. border-radius 6px
  26. background-color rgba(0, 0, 0, 0.12)
  27. padding 2px 2px 2px 7px
  28. #searchform
  29. background-color rgba(255, 255, 255, 0.88)
  30. display block
  31. height 32px
  32. border-radius 4px
  33. transition .2s background-color
  34. .search-keyword
  35. float right
  36. width 200px
  37. color #222
  38. font-size 12px
  39. overflow hidden
  40. height 32px
  41. line-height 32px
  42. padding 0 12px
  43. border 0
  44. box-shadow none
  45. background-color transparent
  46. .search-submit
  47. display block
  48. position absolute
  49. right 0
  50. width 48px
  51. cursor pointer
  52. height 32px
  53. background url(../../assets/images/icons.png) -653px -720px
  54. margin 0
  55. padding 0
  56. border 0
  57. .link-ranking
  58. position absolute
  59. left 2px
  60. top 2px
  61. height 32px
  62. line-height 32px
  63. background-color rgba(255, 255, 255, 0.8)
  64. border-radius 4px
  65. width 68px
  66. transition .2s background-color
  67. span
  68. padding-left 26px
  69. color #f25d8e
  70. display inline-block
  71. background url(../../assets/images/icons.png) -659px -655px no-repeat
  72. </style>