Skip to content

Commit 481f1cc

Browse files
committed
add some notes about what Jupyter is
- include IPython/Jupyter comparison - remove coLab link - use new logo - use sans-serif font instead of Minion to match logo
1 parent b944331 commit 481f1cc

File tree

2 files changed

+35
-18
lines changed

2 files changed

+35
-18
lines changed

css/jupyter.css

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
#jupyter-logo {
2-
font-size: 300%;
2+
width: 400px;
3+
margin: auto;
4+
text-align: center;
35
}
46

57
body {
6-
font-family: "minion-pro";
8+
font-family: "proxima-nova", sans-serif;
9+
font-size: 18px;
710
}
811

912
.container {
1013
}
1114

1215
div#main-title {
1316
margin: 40px 0px;
17+
text-align: center;
1418
}
1519

1620
div#main-title h1 {
@@ -28,6 +32,7 @@ div#jupyter-logo {
2832

2933
div#sub-title {
3034
margin: 50px 0px;
35+
text-align: center;
3136
}
3237

3338
div#sub-title h2 {

index.html

+28-16
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,37 @@
2222
<div class="container">
2323

2424
<div id="main-title">
25-
<h1 class="text-center">Project Jupyter</h1>
25+
<img src="images/jupyter-sq-text.svg" alt="Jupyter" id="jupyter-logo"/>
2626
</div>
27-
28-
<div id="jupyter-logo" class="text-center">
29-
<span class="icon jupyter-icon-jupiter"></span>
30-
<span id="moon-1" class="icon jupyter-icon-moon"></span>
31-
<img id="julia" src="images/Julia_256x256.png" class="language-logo" />
32-
<span id="moon-2" class="icon jupyter-icon-moon"></span>
33-
<img id="python" src="images/Python_256x256.png" class="language-logo" />
34-
<span id="moon-3" class="icon jupyter-icon-moon"></span>
35-
<img id="r" src="images/R_256x256.png" class="language-logo" />
36-
</div>
37-
3827
<div id="sub-title">
3928
<h2 class="text-center">Evolved from the IPython Project</h2>
29+
<h2 class="text-center">
30+
The language-agnostic parts of IPython are getting a new home in Project Jupyter
31+
</h2>
32+
</div>
33+
34+
35+
<div class="row">
36+
<div class="col-md-3 col-md-offset-3">
37+
<h2 class="text-center">IPython</h2>
38+
<ul>
39+
<li>Interactive Python shell</li>
40+
<li>Python kernel for Jupyter</li>
41+
<li>Interactive Parallel Python</li>
42+
</ul>
43+
</div>
44+
<div class="col-md-3">
45+
<h2 class="text-center">Jupyter</h3>
46+
<ul>
47+
<li>Rich REPL Protocol</li>
48+
<li>Notebook (format, environment, conversion)</li>
49+
<li><a href="https://github.com/jupyter/jupyterhub">JupyterHub</a> (multi-user notebook server)</li>
50+
<li><a href="https://github.com/jupyter">More...</a></li>
51+
</ul>
52+
</div>
53+
</div>
4054

55+
<div id="announcement-video">
4156
<center>
4257
<iframe width="500" height="300" style="margin:20px 0px 0px"
4358
src="https://www.youtube.com/embed/JDrhn0-r9Eg?start=258&end=529"
@@ -50,20 +65,17 @@ <h4 class="text-center">
5065
</div>
5166

5267
<div id="footer">
53-
<div class="container">
5468
<hr/>
5569
<div class="row">
56-
<div class="col-md-3">
70+
<div class="col-md-3 col-md-offset-2">
5771
<iframe src="https://ghbtns.com/github-btn.html?user=jupyter&type=follow"
5872
allowtransparency="true" frameborder="0" scrolling="0" width="200" height="20"></iframe>
5973
</div>
6074
<div class="col-md-3">
6175
<a href="https://twitter.com/ProjectJupyter" class="twitter-follow-button" data-show-count="false">Follow @ProjectJupyter</a>
6276
</div>
63-
<div class="col-md-3"><a href="http://colaboratory.jupyter.org" target="_blank">Jupyter coLaboratory</a></div>
6477
<div class="col-md-3"><a href="http://ipython.org" target="_blank">IPython Project</a></div>
6578
</div>
66-
</div>
6779
</div>
6880

6981

0 commit comments

Comments
 (0)