index.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #jupyter_server {
  2. padding-left: 0px;
  3. padding-top: 1px;
  4. padding-bottom: 1px;
  5. }
  6. #jupyter_server img {
  7. height: 28px;
  8. }
  9. #jupyter-main-app {
  10. padding-top: 50px;
  11. text-align: center;
  12. }
  13. body {
  14. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  15. font-size: 13px;
  16. line-height: 1.42857143;
  17. color: #000;
  18. }
  19. body > #header {
  20. display: block;
  21. background-color: #fff;
  22. position: relative;
  23. z-index: 100;
  24. }
  25. body > #header #header-container {
  26. display: flex;
  27. flex-direction: row;
  28. justify-content: space-between;
  29. padding: 5px;
  30. padding-top: 5px;
  31. padding-bottom: 5px;
  32. padding-bottom: 5px;
  33. padding-top: 5px;
  34. box-sizing: border-box;
  35. -moz-box-sizing: border-box;
  36. -webkit-box-sizing: border-box;
  37. }
  38. body > #header .header-bar {
  39. width: 100%;
  40. height: 1px;
  41. background: #e7e7e7;
  42. margin-bottom: -1px;
  43. }
  44. .navbar-brand {
  45. float: left;
  46. height: 30px;
  47. padding: 6px 0px;
  48. padding-top: 6px;
  49. padding-bottom: 6px;
  50. padding-left: 0px;
  51. font-size: 17px;
  52. line-height: 18px;
  53. }
  54. .navbar-brand,
  55. .navbar-nav > li > a {
  56. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  57. }
  58. .nav {
  59. padding-left: 0;
  60. margin-bottom: 0;
  61. list-style: none;
  62. }
  63. .center-nav {
  64. display: inline-block;
  65. margin-bottom: -4px;
  66. }
  67. div.error {
  68. margin: 2em;
  69. text-align: center;
  70. }
  71. div.error > h1 {
  72. font-size: 500%;
  73. line-height: normal;
  74. }
  75. div.error > p {
  76. font-size: 200%;
  77. line-height: normal;
  78. }