Inline Styling

you may define css styles inside your markdown:

by using the <style> compoment

<style>
	.with-border{
		border: 1px solid red;
	}
</style>

styled text <!-- element class="with-border" -->

styled text

  • See it fullscreen
  • by including them through css file

    it is possible to add further css files beside theme and highlight theme to slide deck:

    ---
    css: [css/layout.css,css/customFonts.css]
    ---