2011-08-05 13:57:01 +08:00
|
|
|
/**
|
|
|
|
* Primary styles
|
|
|
|
*
|
|
|
|
* Author: IPython Development Team
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: white;
|
|
|
|
/* This makes sure that the body covers the entire window and needs to
|
|
|
|
be in a different element than the display: box in wrapper below */
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
2012-02-08 08:05:54 +08:00
|
|
|
overflow: visible;
|
2011-08-05 13:57:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
div#header {
|
|
|
|
/* Initially hidden to prevent FLOUC */
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-06-03 11:10:24 +08:00
|
|
|
#ipython_notebook {
|
2013-06-04 05:14:08 +08:00
|
|
|
padding-left: 16px;
|
2011-08-05 13:57:01 +08:00
|
|
|
}
|
|
|
|
|
2013-06-25 05:37:08 +08:00
|
|
|
#noscript {
|
|
|
|
width: auto;
|
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 22px;
|
|
|
|
color: red;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2013-06-03 11:10:24 +08:00
|
|
|
#ipython_notebook img {
|
2011-08-05 13:57:01 +08:00
|
|
|
font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
|
2011-12-08 04:33:42 +08:00
|
|
|
height: 24px;
|
|
|
|
text-decoration:none;
|
2011-08-05 13:57:01 +08:00
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2012-02-08 08:05:54 +08:00
|
|
|
#site {
|
2012-02-08 13:40:33 +08:00
|
|
|
width: 100%;
|
2011-08-05 13:57:01 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2012-01-12 04:30:45 +08:00
|
|
|
/* Smaller buttons */
|
2011-08-05 13:57:01 +08:00
|
|
|
.ui-button .ui-button-text {
|
|
|
|
padding: 0.2em 0.8em;
|
|
|
|
font-size: 77%;
|
|
|
|
}
|
2011-10-26 13:14:09 +08:00
|
|
|
|
2012-02-08 08:05:54 +08:00
|
|
|
input.ui-button {
|
|
|
|
padding: 0.3em 0.9em;
|
|
|
|
}
|
2013-06-04 05:14:08 +08:00
|
|
|
.navbar span {
|
|
|
|
margin-top: 3px;
|
|
|
|
}
|
2012-02-08 08:05:54 +08:00
|
|
|
|
2011-10-26 13:14:09 +08:00
|
|
|
span#login_widget {
|
|
|
|
float: right;
|
|
|
|
}
|
2013-06-03 06:51:39 +08:00
|
|
|
|
|
|
|
.nav-header {
|
|
|
|
text-transform: none;
|
2013-06-03 11:10:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nobg {
|
|
|
|
background-color: transparent;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header > span {
|
|
|
|
margin-top: 10px;
|
2013-06-13 23:16:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
max-height: 500px;
|
|
|
|
}
|