diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-09 21:48:43 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-07-09 21:48:43 -0400 |
commit | 74d342daf72c8ddd59dfd7b4aa11eda549a4d759 (patch) | |
tree | f1941bf0b4f9e9266ac3ff873f7c668d319099c5 | |
parent | 54f1fcf381dcf23e54f2b942268aa799969fa9ea (diff) | |
download | fosdem-2018-presentation-74d342daf72c8ddd59dfd7b4aa11eda549a4d759.tar fosdem-2018-presentation-74d342daf72c8ddd59dfd7b4aa11eda549a4d759.tar.gz |
larger font for code samples (closes #60)
-rw-r--r-- | css/main.css | 2 | ||||
-rw-r--r-- | index.html | 31 |
2 files changed, 13 insertions, 20 deletions
diff --git a/css/main.css b/css/main.css index 93d3d20..01145b7 100644 --- a/css/main.css +++ b/css/main.css @@ -197,7 +197,7 @@ body { margin: 10px auto; text-align: left; - font-size: 14px; + font-size: 20px; font-family: monospace; line-height: 1.2em; @@ -184,27 +184,20 @@ <section> <h2>Pretty Code</h2> <pre><code contenteditable> -var supports3DTransforms = document.body.style['webkitPerspective'] !== undefined || - document.body.style['MozPerspective'] !== undefined || - document.body.style['perspective'] !== undefined; - function linkify( selector ) { - if( supports3DTransforms ) { - - var nodes = document.querySelectorAll( selector ); - - for( var i = 0, len = nodes.length; i < len; i++ ) { - var node = nodes[i]; - - if( !node.className || !node.className.match( /roll/g ) ) { - node.className += ' roll'; - node.innerHTML = '<span data-title="'+ node.text +'">' + node.innerHTML + '</span>'; - } - }; - } + if( supports3DTransforms ) { + + var nodes = document.querySelectorAll( selector ); + + for( var i = 0, len = nodes.length; i < len; i++ ) { + var node = nodes[i]; + + if( !node.className ) ) { + node.className += ' roll'; + } + }; + } } - -linkify( 'a' ); </code></pre> <p>Courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p> </section> |