page.css 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Primary styles
  3. *
  4. * Author: IPython Development Team
  5. */
  6. body {
  7. background-color: white;
  8. /* This makes sure that the body covers the entire window and needs to
  9. be in a different element than the display: box in wrapper below */
  10. position: absolute;
  11. left: 0px;
  12. right: 0px;
  13. top: 0px;
  14. bottom: 0px;
  15. overflow: visible;
  16. }
  17. div#header {
  18. /* Initially hidden to prevent FLOUC */
  19. display: none;
  20. position: relative;
  21. height: 40px;
  22. padding: 5px;
  23. margin: 0px;
  24. width: 100%;
  25. }
  26. span#ipython_notebook {
  27. position: absolute;
  28. padding: 2px 2px 2px 5px;
  29. }
  30. span#ipython_notebook img {
  31. font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  32. height: 24px;
  33. text-decoration:none;
  34. display: inline;
  35. color: black;
  36. }
  37. #site {
  38. width: 100%;
  39. display: none;
  40. }
  41. /* We set the fonts by hand here to override the values in the theme */
  42. .ui-widget {
  43. font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  44. }
  45. .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  46. font-family: "Lucinda Grande", "Lucinda Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  47. }
  48. /* Smaller buttons */
  49. .ui-button .ui-button-text {
  50. padding: 0.2em 0.8em;
  51. font-size: 77%;
  52. }
  53. input.ui-button {
  54. padding: 0.3em 0.9em;
  55. }
  56. span#login_widget {
  57. float: right;
  58. }
  59. .border-box-sizing {
  60. box-sizing: border-box;
  61. -moz-box-sizing: border-box;
  62. -webkit-box-sizing: border-box;
  63. }
  64. #figure-div {
  65. display: inline-block;
  66. margin: 10px;
  67. }