index.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) 2014-2016, Jupyter Development Team.
  3. |
  4. | Distributed under the terms of the Modified BSD License.
  5. |----------------------------------------------------------------------------*/
  6. body {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. #main {
  11. position: absolute;
  12. top: 10px;
  13. left: 10px;
  14. right: 10px;
  15. bottom: 10px;
  16. padding: 8px;
  17. }
  18. .p-CommandPalette {
  19. background: #F5F5F5;
  20. border: 1px solid #CCCCCC;
  21. }
  22. .p-CommandPalette-search {
  23. padding: 8px;
  24. }
  25. .p-CommandPalette-inputWrapper {
  26. padding: 4px 6px;
  27. background: white;
  28. border: 1px solid #E0E0E0;
  29. }
  30. .p-CommandPalette-input {
  31. width: 100%;
  32. border: none;
  33. outline: none;
  34. font-size: 16px;
  35. }
  36. .p-CommandPalette-header {
  37. padding: 4px;
  38. color: #757575;
  39. font-size: 12px;
  40. font-weight: 600;
  41. text-transform: capitalize;
  42. background: #E1E1E1;
  43. cursor: pointer;
  44. }
  45. .p-CommandPalette-header.p-mod-active {
  46. background: #7FDBFF;
  47. }
  48. .p-CommandPalette-header:hover::before {
  49. content: '\2026'; /* ellipsis */
  50. float: right;
  51. margin-right: 4px;
  52. }
  53. .p-CommandPalette-header > mark {
  54. background-color: transparent;
  55. font-weight: bold;
  56. }
  57. .p-CommandPalette-command {
  58. padding: 4px 8px;
  59. color: #757575;
  60. font-size: 13px;
  61. font-weight: 500;
  62. }
  63. .p-CommandPalette-command.p-mod-active {
  64. background: #7FDBFF;
  65. }
  66. .p-CommandPalette-command:hover:not(.p-mod-active) {
  67. background: #EBEBEB;
  68. }
  69. .p-CommandPalette-commandText > mark {
  70. background-color: transparent;
  71. font-weight: bold;
  72. }
  73. .p-CommandPalette-commandCaption {
  74. color: #9E9E9E;
  75. font-size: 11px;
  76. font-weight: 400;
  77. }