Guest User

Untitled

a guest
Oct 19th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 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. position: absolute;
  47. display: block;
  48. top: 20px;
  49. left: 20px;
  50. white-space: nowrap;
  51. overflow: hidden;
  52. font-size: 11px;
  53. padding: 1px 3px 0px 3px;
  54. background: linear-gradient(to bottom, #FFF785 0%,#FFC542 100%);
  55. border: solid 1px #C38A22;
  56. border-radius: 3px;
  57. box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
  58.  
  59. color: #302505;
  60. font-family: Helvetica, Arial, sans-serif;
  61. font-weight: bold;
  62. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  63. opacity: 1;
  64. }
  65.  
  66. .sVim-hint.sVim-hint-form {
  67. /*background-color: #3EFEFF;*/
  68. /*background: linear-gradient(to bottom, #6fbcf1 0%, #2aa1db 100%);*/
  69. /*border: solid 1px #2289c7;*/
  70. }
  71.  
  72. .sVim-hint.sVim-hint-focused {
  73. opacity: 1;
  74. font-weight: bold;
  75. }
Add Comment
Please, Sign In to add comment