Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

:customcss: attribute for easy per-presentation CSS #85

Merged
merged 6 commits into from
Sep 8, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,28 @@ Detailed view diagram
----


=== CSS override

If you use the `:customcss:` document attribute, a CSS file of the name given in the attribute is added to the list of CSS resources loaded by the rendered HTML.
Doing so, you can then easily override specific elements of your theme per presentation.

For example, to do proper position-independent text placement of a title slide with a specific background you can use:

----
.reveal section.title h1 {
margin-top: 2.3em;
}

.reveal section.title small {
margin-top: 15.3em;
font-weight: bold;
color: white;
}
----

If the `:customcss:` attribute value is empty then `asciidoctor-revealjs.css` is the CSS resource that the presentation is linked to.


== About Jade Templates

`/templates/jade` directory contains jade template files they are ported from `/templates/slim` templates. These templates were written to support reveal.js backend for Asciidoctor.js environment that is currently using in https://github.com/asciidocfx/AsciidocFX[AsciidocFX] editor. You can look at the https://github.com/asciidocfx/asciidoctor.js-reveal-demo[demo].
Expand Down
2 changes: 2 additions & 0 deletions templates/slim/document.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ html lang=(attr :lang, 'en' unless attr? :nolang)
document.write( '<link rel="stylesheet" href="#{revealjsdir}/css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
- unless (docinfo_content = docinfo :header, '.html').empty?
=docinfo_content
- if attr? :customcss
link rel='stylesheet' href=((customcss = attr :customcss).empty? ? 'asciidoctor-revealjs.css' : customcss)
body
.reveal
/ Any section element inside of this container is displayed as a slide
Expand Down
5 changes: 5 additions & 0 deletions test/customcss.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= Custom CSS
Author
:customcss: customcss.css

== Slide 1
8 changes: 8 additions & 0 deletions test/customcss.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.reveal section h1 {
font-family: cursive;
}

.reveal section small {
margin-top: 15.3em;
font-family: fantasy;
}