##// END OF EJS Templates
Adjust title area sizes to improve alignment.
Fernando Perez -
Show More
@@ -1,53 +1,53 b''
1 /**
1 /**
2 * Primary styles
2 * Primary styles
3 *
3 *
4 * Author: IPython Development Team
4 * Author: IPython Development Team
5 */
5 */
6
6
7
7
8 body {
8 body {
9 background-color: white;
9 background-color: white;
10 /* This makes sure that the body covers the entire window and needs to
10 /* This makes sure that the body covers the entire window and needs to
11 be in a different element than the display: box in wrapper below */
11 be in a different element than the display: box in wrapper below */
12 position: absolute;
12 position: absolute;
13 left: 0px;
13 left: 0px;
14 right: 0px;
14 right: 0px;
15 top: 0px;
15 top: 0px;
16 bottom: 0px;
16 bottom: 0px;
17 overflow: hidden;
17 overflow: hidden;
18 }
18 }
19
19
20
20
21 div#header {
21 div#header {
22 /* Initially hidden to prevent FLOUC */
22 /* Initially hidden to prevent FLOUC */
23 display: none;
23 display: none;
24 position: relative;
24 position: relative;
25 height: 45px;
25 height: 40px;
26 padding: 5px;
26 padding: 5px;
27 margin: 0px;
27 margin: 0px;
28 width: 100%;
28 width: 100%;
29 }
29 }
30
30
31 span#ipython_notebook {
31 span#ipython_notebook {
32 position: absolute;
32 position: absolute;
33 padding: 2px;
33 padding: 2px;
34 }
34 }
35
35
36 span#ipython_notebook h1 {
36 span#ipython_notebook h1 {
37 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
37 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
38 font-size: 197%;
38 font-size: 150%;
39 display: inline;
39 display: inline;
40 color: black;
40 color: black;
41 }
41 }
42
42
43 div#main_app {
43 div#main_app {
44 /* Initially hidden to prevent FLOUC */
44 /* Initially hidden to prevent FLOUC */
45 display: none;
45 display: none;
46 width: 100%;
46 width: 100%;
47 position: relative;
47 position: relative;
48 }
48 }
49
49
50 .ui-button .ui-button-text {
50 .ui-button .ui-button-text {
51 padding: 0.2em 0.8em;
51 padding: 0.2em 0.8em;
52 font-size: 77%;
52 font-size: 77%;
53 }
53 }
General Comments 0
You need to be logged in to leave comments. Login now