Skip to content

Commit

Permalink
Add SFINAE section, tweaks
Browse files Browse the repository at this point in the history
* add section on SFINAE
* add alternative css for saving ink on PDF output
* minor tweaks
* add a little more to parsing section
  • Loading branch information
elbeno committed Apr 25, 2017
1 parent 12318d7 commit fda7a11
Show file tree
Hide file tree
Showing 5 changed files with 612 additions and 294 deletions.
Binary file added presentation/constexpr_problem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions presentation/presentation-inksaver.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
@font-face {
font-family: "Inconsolata";
font-style: normal;
font-weight: normal;
src: local("Inconsolata"), url("http://themes.googleusercontent.com/static/fonts/inconsolata/v3/BjAYBlHtW3CJxDcjzrnZCIbN6UDyHWBl620a-IRfuBk.woff") format("woff");
}

.reveal code {
font-family: Inconsolata;
text-transform: initial;
color: rgb(231, 173, 82);
}

.reveal a {
text-transform: initial;
}

.reveal pre {
font-family: Inconsolata;
font-size: 24px;
}

.org-src-container pre {
padding: 20px;
color: rgb(101,123,131);
background-color: #fdf6e3;
}

#sec-title-slide h1,
.reveal p,
.reveal li,
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4 {
color: black;
}
.reveal p code {
background-color: white;
}

#sec-title-slide h2,
#sec-title-slide h3 {
font-size: 60px;
color: black;
}

.reveal .slide-number {
position: absolute;
bottom: 20px;
left: 20px;
font-family: Inconsolata;
font-size: 28px;
font-weight: bold;
color: rgb(231, 173, 82);
background-color: transparent;
}

.reveal .controls {
color: rgb(231, 173, 82);
}

.reveal .progress span {
background: rgb(231, 173, 82);
}

.reveal a {
color: rgb(231, 173, 82);
}

#left {
left:-8.33%;
text-align: left;
float: left;
width:50%;
z-index:-10;
}

#right {
left:31.25%;
top: 75px;
float: right;
text-align: right;
z-index:-10;
width:50%;
}
4 changes: 4 additions & 0 deletions presentation/presentation.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
color: rgb(231, 173, 82);
}

.reveal p code {
background-color: #222222;
}

.reveal a {
text-transform: initial;
}
Expand Down
Loading

0 comments on commit fda7a11

Please sign in to comment.