Skip to content

Commit

Permalink
Ready to go
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjun Bharadwaj committed Oct 16, 2015
1 parent 3142335 commit 57510d4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 19 deletions.
9 changes: 9 additions & 0 deletions HTML Slides/css/reveal.css
Original file line number Diff line number Diff line change
Expand Up @@ -1173,3 +1173,12 @@ body {

.zoomed .reveal .roll span:after {
visibility: hidden; }

/*
CUSTOM SIZE FOR CODE
*/
.reveal pre code{
width: 130%;
margin-left: -15% !important;
height: 170%;
}
5 changes: 2 additions & 3 deletions HTML Slides/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ <h6>Try to laugh one or more times during the day</h6>
<section>
<section>
<h2>Rambling{...}</h2>
<h6>We always have dat one friend who keeps rambling</h6>
<h6>Repeating words again and again</h6>
<pre><code>
import re
Expand Down Expand Up @@ -354,11 +353,11 @@ <h6>One CS Club to Rule em' all...</h6>
<pre><code>
import re
csClubRegex = re.compile(r'\d+\s\w+')
moList = csClubRegex.findall('11 amazing officers, 1 club, 10 goals, 100 people')
moList = csClubRegex.findall('12 amazing officers, 1 club, 10 goals, 100 people')
print(moList)

# OUTPUT:
# ['11 amazing', '1 club', '10 goals', '100 people']
# ['12 amazing', '1 club', '10 goals', '100 people']
</code></pre>
</section>
</section>
Expand Down
Loading

0 comments on commit 57510d4

Please sign in to comment.