Add local.css to make paragraph text left-aligned.

This commit is contained in:
Yujie Wen 2015-03-19 16:46:05 +08:00
parent f1a112659e
commit e220db8db0
2 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#+REVEAL_HEAD_PREAMBLE: <meta name="description" content="Org-Reveal Introduction.">
#+REVEAL_POSTAMBLE: <p> Created by yjwen. </p>
#+REVEAL_PLUGINS: (highlight markdown notes)
#+REVEAL_EXTRA_CSS: ./local.css
* Reveal.js and Org-Reveal

3
local.css Normal file
View File

@ -0,0 +1,3 @@
.reveal p {
text-align: left;
}