Guest User

Untitled

a guest
Oct 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. @-webkit-keyframes fadein {
  2. from {
  3. opacity: 0;
  4. }
  5. to {
  6. opacity: 1;
  7. }
  8. }
  9.  
  10. #sVim-command {
  11. -webkit-animation: fadein .2s !important;
  12. -webkit-appearance: none !important;
  13. background-color: rgba(0, 0, 0, 0.80) !important;
  14. background-position: none !important;
  15. background-repeat: none !important;
  16. border-radius: 0 !important;
  17. border: 0 !important;
  18. box-shadow: none !important;
  19. box-sizing: content-box !important;
  20. color: #FFFFFF !important;
  21. display: none;
  22. font-family: "Helvetica Neue" !important;
  23. font-size: 13px !important;
  24. font-style: normal !important;
  25. left: 0 !important;
  26. letter-spacing: normal !important;
  27. line-height: 1 !important;
  28. margin: 0 !important;
  29. min-height: 0 !important;
  30. outline-style: none !important;
  31. outline: 0 !important;
  32. padding: 2px 0 0 10px !important;
  33. position: fixed !important;
  34. right: 0 !important;
  35. text-align: start !important;
  36. text-indent: 0px !important;
  37. text-shadow: none !important;
  38. text-transform: none !important;
  39. vertical-align: none !important;
  40. width: 100% !important;
  41. word-spacing: normal !important;
  42. z-index: 2147483647 !important;
  43. }
  44.  
  45. .sVim-hint {
  46. opacity: 0.7;
  47. padding: 1px 3px;
  48. font-family: 'Helvetica Neue', 'Helvetica';
  49. font-size: 11px;
  50. font-weight: bold;
  51. text-shadow: rgba(255, 255, 255, 0.6) 0px 1px 0px;
  52. background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255, 247, 133)), to(rgb(255, 197, 66)));
  53. border: 1px solid rgb(227, 190, 35);
  54. border-radius: 3px;
  55. color: #333333;
  56. }
  57.  
  58. .sVim-hint.sVim-hint-form {
  59. background-color: #3EFEFF;
  60. }
  61.  
  62. .sVim-hint.sVim-hint-focused {
  63. opacity: 1;
  64. font-weight: bold;
  65. }
Add Comment
Please, Sign In to add comment