projects
/
reveal.js.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6794f54
)
escape quotes in css using unicode hex
author
Hakim El Hattab
<hakim.elhattab@gmail.com>
Sun, 28 Oct 2012 01:20:13 +0000
(21:20 -0400)
committer
Hakim El Hattab
<hakim.elhattab@gmail.com>
Sun, 28 Oct 2012 01:20:13 +0000
(21:20 -0400)
css/reveal.css
patch
|
blob
|
history
diff --git
a/css/reveal.css
b/css/reveal.css
index b39ea13047b06d469677e79cbc4e24d931ddacbe..6e2361bd42afa13d4747b133d79aac477dc507c1 100644
(file)
--- a/
css/reveal.css
+++ b/
css/reveal.css
@@
-239,20
+239,20
@@
body {
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}
.reveal blockquote:before {
- content: '
“
';
+ content: '
\201C
';
}
.reveal blockquote:after {
- content: '
”
';
+ content: '
\201D
';
}
.reveal q {
font-style: italic;
}
.reveal q:before {
- content: '
“
';
+ content: '
\201C
';
}
.reveal q:after {
- content: '
”
';
+ content: '
\201D
';
}
.reveal pre {