From 59410edca5e6a782231d6fa737cbb4824724bf07 Mon Sep 17 00:00:00 2001 From: Laurent Heirendt <laurent.heirendt@uni.lu> Date: Fri, 13 Jan 2017 13:46:22 +0100 Subject: [PATCH] Increasing the size of the code blocks --- bower_components/reveal.js/css/reveal.css | 13 +++++++------ .../reveal.js/css/theme/template/theme.scss | 2 -- bower_components/reveal.js/js/reveal.js | 4 ++-- css/style.css | 5 +++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bower_components/reveal.js/css/reveal.css b/bower_components/reveal.js/css/reveal.css index eac65d28..40f869df 100644 --- a/bower_components/reveal.js/css/reveal.css +++ b/bower_components/reveal.js/css/reveal.css @@ -307,7 +307,7 @@ body { word-wrap: break-word; - box-shadow: 0px 0px 6px rgba(0,0,0,0.3); + /*box-shadow: 0px 0px 6px rgba(0,0,0,0.3);*/ } .reveal code { font-family: monospace; @@ -322,6 +322,7 @@ body { height: 100%; max-height: 100%; + -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; @@ -506,10 +507,10 @@ body { -o-transition: -o-perspective .4s ease; transition: perspective .4s ease; - -webkit-perspective: 1600px; - -moz-perspective: 1600px; - -ms-perspective: 1600px; - perspective: 1600px; + -webkit-perspective: 2400px; + -moz-perspective: 2400px; + -ms-perspective: 2400px; + perspective: 2400px; -webkit-perspective-origin: 0px -400px; -moz-perspective-origin: 0px -400px; @@ -518,7 +519,7 @@ body { } .reveal .slides>section { - -ms-perspective: 1600px; + -ms-perspective: 2400px; } .reveal .slides>section, diff --git a/bower_components/reveal.js/css/theme/template/theme.scss b/bower_components/reveal.js/css/theme/template/theme.scss index 735b7659..7e1c6b2a 100644 --- a/bower_components/reveal.js/css/theme/template/theme.scss +++ b/bower_components/reveal.js/css/theme/template/theme.scss @@ -159,5 +159,3 @@ body { -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); } - - diff --git a/bower_components/reveal.js/js/reveal.js b/bower_components/reveal.js/js/reveal.js index 794911c5..8ebbd982 100644 --- a/bower_components/reveal.js/js/reveal.js +++ b/bower_components/reveal.js/js/reveal.js @@ -1825,12 +1825,12 @@ var Reveal = (function(){ } /** - * Updates the background elements to reflect the current + * Updates the background elements to reflect the current * slide. */ function updateBackground() { - // Update the classes of all backgrounds to match the + // Update the classes of all backgrounds to match the // states of their slides (past/present/future) toArray( dom.background.childNodes ).forEach( function( backgroundh, h ) { diff --git a/css/style.css b/css/style.css index 9d2fc704..d447179e 100644 --- a/css/style.css +++ b/css/style.css @@ -1,8 +1,9 @@ -/*@import url('icomoon79565/style.css');*/ - .reveal pre { font-size: 0.8em; /* Make the commands bigger */ box-shadow: 3px 4px 10px rgba(0,0,0,0.8); + width: 120%; + position: relative; + left: -10%; } .reveal pre code { background-color: #333333; -- GitLab