index.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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: 4px;
  13. left: 4px;
  14. right: 4px;
  15. bottom: 4px;
  16. }
  17. .jp-Notebook-panel {
  18. border-bottom: 1px solid #E0E0E0;
  19. }
  20. .p-CommandPalette {
  21. min-width: 325px;
  22. background: #F8F8F8;
  23. border: 1px solid #E0E0E0;
  24. color: #757575;
  25. font-family: "Helvetica Neue", Helvetica;
  26. }
  27. .p-CommandPalette-search {
  28. padding: 8px;
  29. }
  30. .p-CommandPalette-inputWrapper {
  31. padding: 4px 6px;
  32. background: white;
  33. border: 1px solid #E0E0E0;
  34. }
  35. .p-CommandPalette-input {
  36. width: 100%;
  37. border: none;
  38. outline: none;
  39. font-size: 16px;
  40. }
  41. .p-CommandPalette-header {
  42. padding: 4px;
  43. color: #757575;
  44. font-size: 12px;
  45. font-weight: 600;
  46. text-transform: capitalize;
  47. background: #E1E1E1;
  48. cursor: pointer;
  49. }
  50. .p-CommandPalette-header.p-mod-active {
  51. background: #7FDBFF;
  52. }
  53. .p-CommandPalette-header:hover::before {
  54. content: '\2026'; /* ellipsis */
  55. float: right;
  56. margin-right: 4px;
  57. }
  58. .p-CommandPalette-header > mark {
  59. background-color: transparent;
  60. font-weight: bold;
  61. }
  62. .p-CommandPalette-command {
  63. padding: 4px 8px;
  64. color: #757575;
  65. font-size: 13px;
  66. font-weight: 500;
  67. }
  68. .p-CommandPalette-command.p-mod-active {
  69. background: #7FDBFF;
  70. }
  71. .p-CommandPalette-command:hover:not(.p-mod-active) {
  72. background: #EBEBEB;
  73. }
  74. .p-CommandPalette-commandText > mark {
  75. background-color: transparent;
  76. font-weight: bold;
  77. }
  78. .p-CommandPalette-commandCaption {
  79. color: #9E9E9E;
  80. font-size: 11px;
  81. font-weight: 400;
  82. }
  83. .p-CommandPalette-commandShortcut {
  84. color: #bbbaaa;
  85. }