index.css 1.8 KB

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