Skip to content

Commit 217434c

Browse files
committed
change styling and README change
1 parent 7b29ccc commit 217434c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# python-adv-slides
22

3-
This is a set of slides for a 2-day course on Python intended for existing programmers who want to learn the joy that is the Zen of Python.
3+
This is a set of slides for a 3-day course on Python intended for existing programmers who want to learn the joy that is the Zen of Python.
44

55
It does not waste time teaching the basics of programming -- instead, it dives right into what makes Python special. The first day is spent exploring common Python idioms and ways of doing things.
66

77
The second day is spent on advanced Python features and techniques that make the language such a joy to use.
88

9+
The final day is spent on learning the Python standard library and all its wonders.
10+
911
I have given this presentation at places like BarCamp, HackNY, and other smaller conferences and gatherings.
1012

1113
Slides can be viewed in compiled form at:

ui/small-black/pretty.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ div#controls form {position: absolute; bottom: 0; right: 0; width: 100%;
3939
#controls #navLinks a {padding: 0; margin: 0 0.5em;
4040
border: none; color: #888; cursor: pointer;}
4141
#controls #navList {height: 1em;}
42-
#controls #navList #jumplist {position: absolute; bottom: 0; right: 0;
43-
background: black; color: #CCC;}
42+
#controls #navList #jumplist {position: absolute; bottom: 0; right: 0;}
4443

4544
#currentSlide {text-align: center; font-size: 0.5em; color: #AAA;
4645
font-family: sans-serif; font-weight: bold;}

ui/small-black/slides.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ function externalLinks() {
380380
function createControls() {
381381
var controlsDiv = document.getElementById("controls");
382382
if (!controlsDiv) return;
383-
var hider = ' onmouseover="showHide(\'s\');" onmouseout="showHide(\'h\');"';
383+
var hider = ' onmouseover="showHide(\'s\');"';
384384
var hideDiv, hideList = '';
385385
if (controlVis == 'hidden') {
386386
hideDiv = hider;

0 commit comments

Comments
 (0)