_about.less 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * 页面下方 “关于” 面板的样式
  3. */
  4. .fullscreen #about #km-cat {
  5. transform: translate(0, 0);
  6. transition: transform 0.7s 0.2s ease;
  7. }
  8. #about {
  9. position: absolute;
  10. bottom: 0;
  11. right: 0;
  12. height: 40px;
  13. line-height: 40px;
  14. background: #5d697a;
  15. color: #eee;
  16. font-family:Arial;
  17. font-size: 13px;
  18. font-weight:normal;
  19. margin:0;
  20. text-align: right;
  21. padding: 0 15px 0 60px;
  22. border-bottom: 5px solid #393F4F;
  23. overflow: visible;
  24. transition: all ease .3s 0.3s;
  25. transform: translate(100%);
  26. a {
  27. color: #eee;
  28. }
  29. #km-cat {
  30. position: absolute;
  31. left: 15px;
  32. top: 5px;
  33. transition: all ease 1.3s 0.3s;
  34. transform: translate(-60px, 0);
  35. cursor: pointer;
  36. }
  37. #cat-face {
  38. fill: #393F4F;
  39. }
  40. &:hover, &:hover #km-cat {
  41. transform: translate(0);
  42. }
  43. #km-version.new-version{
  44. position: relative;
  45. padding-right: 30px;
  46. &:after {
  47. content: 'NEW';
  48. color: #ff0;
  49. position: absolute;
  50. top: -10px;
  51. right: -5px;
  52. display: block;
  53. background: #f00;
  54. padding: 0 5px;
  55. border-radius: 4px;
  56. text-shadow: none;
  57. box-shadow: -1px 1px 3px rgba(0,0,0,0.3);
  58. transform: scale(.6);
  59. }
  60. }
  61. }