Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 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. background-color: #222222;
  47. color: white;
  48. font-size: 10pt;
  49. font-family: monospace;
  50. line-height: 10pt;
  51. padding: 2px;
  52. opacity: .8;
  53. }
  54.  
  55. .sVim-hint.sVim-hint-form {
  56. background-color: #1c57b5;
  57. }
  58.  
  59. .sVim-hint.sVim-hint-focused {
  60. opacity: 1;
  61. font-weight: bold;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement