├── css └── theme │ ├── .gitignore │ ├── source │ ├── _addons.scss │ └── cccs.scss │ └── cccs.css └── lib ├── bg.png ├── cccsturm.png └── font ├── titillium-black-webfont.eot ├── titillium-black-webfont.ttf ├── titillium-bold-webfont.eot ├── titillium-bold-webfont.ttf ├── titillium-bold-webfont.woff ├── titillium-light-webfont.eot ├── titillium-light-webfont.ttf ├── titillium-thin-webfont.eot ├── titillium-thin-webfont.ttf ├── titillium-thin-webfont.woff ├── fontawesome ├── fa-brands-400.ttf ├── fa-solid-900.ttf ├── fa-brands-400.woff2 ├── fa-regular-400.ttf ├── fa-regular-400.woff2 ├── fa-solid-900.woff2 ├── fa-v4compatibility.ttf └── fa-v4compatibility.woff2 ├── titillium-black-webfont.woff ├── titillium-light-webfont.woff ├── titillium-regular-webfont.eot ├── titillium-regular-webfont.ttf ├── titillium-bolditalic-webfont.eot ├── titillium-bolditalic-webfont.ttf ├── titillium-regular-webfont.woff ├── titillium-semibold-webfont.eot ├── titillium-semibold-webfont.ttf ├── titillium-semibold-webfont.woff ├── titillium-thinitalic-webfont.eot ├── titillium-thinitalic-webfont.ttf ├── titillium-bolditalic-webfont.woff ├── titillium-boldupright-webfont.eot ├── titillium-boldupright-webfont.ttf ├── titillium-boldupright-webfont.woff ├── titillium-lightitalic-webfont.eot ├── titillium-lightitalic-webfont.ttf ├── titillium-lightitalic-webfont.woff ├── titillium-lightupright-webfont.eot ├── titillium-lightupright-webfont.ttf ├── titillium-thinitalic-webfont.woff ├── titillium-thinupright-webfont.eot ├── titillium-thinupright-webfont.ttf ├── titillium-thinupright-webfont.woff ├── titillium-lightupright-webfont.woff ├── titillium-regularitalic-webfont.eot ├── titillium-regularitalic-webfont.ttf ├── titillium-regularitalic-webfont.woff ├── titillium-regularupright-webfont.eot ├── titillium-regularupright-webfont.ttf ├── titillium-regularupright-webfont.woff ├── titillium-semibolditalic-webfont.eot ├── titillium-semibolditalic-webfont.ttf ├── titillium-semibolditalic-webfont.woff ├── titillium-semiboldupright-webfont.eot ├── titillium-semiboldupright-webfont.ttf ├── titillium-semiboldupright-webfont.woff ├── titillium-black-webfont.svg ├── titillium-bold-webfont.svg └── titillium-boldupright-webfont.svg /css/theme/.gitignore: -------------------------------------------------------------------------------- 1 | *.css.map 2 | .sass-cache 3 | 4 | -------------------------------------------------------------------------------- /lib/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/bg.png -------------------------------------------------------------------------------- /lib/cccsturm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/cccsturm.png -------------------------------------------------------------------------------- /lib/font/titillium-black-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-black-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-black-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-black-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bold-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bold-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bold-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-light-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-light-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-thin-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thin-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-thin-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thin-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-thin-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thin-webfont.woff -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-brands-400.ttf -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-solid-900.ttf -------------------------------------------------------------------------------- /lib/font/titillium-black-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-black-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-light-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regular-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regular-webfont.ttf -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-brands-400.woff2 -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-regular-400.ttf -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-regular-400.woff2 -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-solid-900.woff2 -------------------------------------------------------------------------------- /lib/font/titillium-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bolditalic-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regular-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibold-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibold-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibold-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-thinitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinitalic-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-thinitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinitalic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /lib/font/titillium-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-bolditalic-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-boldupright-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-boldupright-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-boldupright-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-boldupright-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-boldupright-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-boldupright-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-lightitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightitalic-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-lightitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightitalic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-lightitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightitalic-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-lightupright-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightupright-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-lightupright-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightupright-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-thinitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinitalic-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-thinupright-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinupright-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-thinupright-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinupright-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-thinupright-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-thinupright-webfont.woff -------------------------------------------------------------------------------- /lib/font/fontawesome/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/fontawesome/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /lib/font/titillium-lightupright-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-lightupright-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-regularitalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularitalic-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-regularitalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularitalic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-regularitalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularitalic-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-regularupright-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularupright-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-regularupright-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularupright-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-regularupright-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-regularupright-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-semibolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibolditalic-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-semibolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibolditalic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-semibolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semibolditalic-webfont.woff -------------------------------------------------------------------------------- /lib/font/titillium-semiboldupright-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semiboldupright-webfont.eot -------------------------------------------------------------------------------- /lib/font/titillium-semiboldupright-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semiboldupright-webfont.ttf -------------------------------------------------------------------------------- /lib/font/titillium-semiboldupright-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccs/revealjs-cccs/master/lib/font/titillium-semiboldupright-webfont.woff -------------------------------------------------------------------------------- /css/theme/source/_addons.scss: -------------------------------------------------------------------------------- 1 | .dropshadow { 2 | -webkit-filter: drop-shadow(5px 5px 5px #888); 3 | filter: drop-shadow(5px 5px 5px #888); 4 | } 5 | 6 | body.print-pdf .reveal .slides .noprint { 7 | display: none !important; 8 | } 9 | 10 | body:not(.print-pdf) .reveal .slides .onlyprint { 11 | display: none !important; 12 | } 13 | 14 | img.floatleft { 15 | float: left; 16 | padding-right: 10px; 17 | } 18 | 19 | img.floatright { 20 | float: right; 21 | padding-left: 10px; 22 | } 23 | 24 | .reveal { 25 | section { 26 | .brighten { 27 | background: rgba(255,255,255,0.6); 28 | -webkit-box-shadow: 0px 0px 5px 15px rgba(255,255,255,0.6); 29 | -moz-box-shadow: 0px 0px 5px 15px rgba(255,255,255,0.6); 30 | box-shadow: 0px 0px 5px 15px rgba(255,255,255,0.6); 31 | } 32 | 33 | .darken { 34 | background: rgba(0,0,0,0.6); 35 | -webkit-box-shadow: 0px 0px 5px 15px rgba(0,0,0,0.6); 36 | -moz-box-shadow: 0px 0px 5px 15px rgba(0,0,0,0.6); 37 | box-shadow: 0px 0px 5px 15px rgba(0,0,0,0.6); 38 | } 39 | 40 | .textglow { 41 | text-shadow: 0px 0px 10px rgba(255,255,255,0.9); 42 | } 43 | 44 | .textshadow { 45 | text-shadow: 0px 0px 10px rgba(0,0,0,0.9); 46 | } 47 | } 48 | 49 | .slides { 50 | .textleft { 51 | text-align: left; 52 | } 53 | 54 | .large { 55 | font-size: 150%; 56 | } 57 | 58 | .footnote { 59 | position: absolute; 60 | top: 95%; 61 | left: 0%; 62 | width: 95%; 63 | font-size: 70%; 64 | text-align: right; 65 | padding-left: 20px; 66 | padding-right: 25px; 67 | background: rgba(255,255,255,0.5); 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /css/theme/source/cccs.scss: -------------------------------------------------------------------------------- 1 | // Default mixins and settings ----------------- 2 | @import "../template/mixins"; 3 | @import "../template/settings"; 4 | @import "_addons"; 5 | // --------------------------------------------- 6 | 7 | 8 | // Include theme-specific fonts 9 | @font-face { 10 | font-family: 'TitilliumText'; 11 | src: url('../../lib/font/titillium-light-webfont.eot'); 12 | src: url('../../lib/font/titillium-light-webfont.eot?#iefix') format('embedded-opentype'), 13 | url('../../lib/font/titillium-light-webfont.woff') format('woff'), 14 | url('../../lib/font/titillium-light-webfont.ttf') format('truetype'), 15 | url('../../lib/font/titillium-light-webfont.svg#TitilliumText22LLight') format('svg'); 16 | font-weight: normal; 17 | font-style: normal; 18 | } 19 | 20 | @font-face { 21 | font-family: 'TitilliumText'; 22 | src: url('../../lib/font/titillium-regular-webfont.eot'); 23 | src: url('../../lib/font/titillium-regular-webfont.eot?#iefix') format('embedded-opentype'), 24 | url('../../lib/font/titillium-regular-webfont.woff') format('woff'), 25 | url('../../lib/font/titillium-regular-webfont.ttf') format('truetype'), 26 | url('../../lib/font/titillium-regular-webfont.svg#TitilliumText22Regular') format('svg'); 27 | font-weight: 500; 28 | font-style: normal; 29 | } 30 | 31 | @font-face { 32 | font-family: 'TitilliumText'; 33 | src: url('../../lib/font/titillium-semibold-webfont.eot'); 34 | src: url('../../lib/font/titillium-semibold-webfont.eot?#iefix') format('embedded-opentype'), 35 | url('../../lib/font/titillium-semibold-webfont.woff') format('woff'), 36 | url('../../lib/font/titillium-semibold-webfont.ttf') format('truetype'), 37 | url('../../lib/font/titillium-semibold-webfont.svg#TitilliumText22LSemibold') format('svg'); 38 | font-weight: 600; 39 | font-style: normal; 40 | } 41 | 42 | @font-face { 43 | font-family: 'TitilliumText'; 44 | src: url('../../lib/font/titillium-bold-webfont.eot'); 45 | src: url('../../lib/font/titillium-bold-webfont.eot?#iefix') format('embedded-opentype'), 46 | url('../../lib/font/titillium-bold-webfont.woff') format('woff'), 47 | url('../../lib/font/titillium-bold-webfont.ttf') format('truetype'), 48 | url('../../lib/font/titillium-bold-webfont.svg#TitilliumText22LBold') format('svg'); 49 | //font-weight: 700; 50 | font-weight: bold; 51 | font-style: normal; 52 | } 53 | 54 | $cccsBlau: #002E55; 55 | $cccsGruen: #95C03D; 56 | 57 | html * { 58 | color-profile: sRGB; 59 | rendering-intent: auto; 60 | } 61 | 62 | $backgroundColor: #fff; 63 | $linkColor: $cccsBlau; 64 | $linkColorHover: lighten( $linkColor, 20% ); 65 | $selectionBackgroundColor: $cccsGruen; 66 | 67 | $mainFont: 'TitilliumText', 'Helvetica Neue', Helvetica, Arial, sans-serif; 68 | $mainFontSize: 36px; 69 | $mainColor: #000; 70 | 71 | $headingMargin: 0 0 20px 0; 72 | $headingFont: 'TitilliumText', 'Helvetica Neue', Helvetica, Arial, sans-serif; 73 | $headingColor: $cccsGruen; 74 | $headingTextShadow: none; 75 | 76 | @mixin bodyBackground() { 77 | // @include radial-gradient( rgba(220,220,220,1), rgba(255,255,255,1) ); 78 | @media screen { 79 | background-image:url(../../lib/bg.png); 80 | background-repeat:repeat; 81 | } 82 | } 83 | 84 | 85 | // Theme template ------------------------------ 86 | @import "../template/theme"; 87 | // --------------------------------------------- 88 | 89 | strong { 90 | font-weight: 600; 91 | } 92 | 93 | .reveal { 94 | @media screen { 95 | background-image: url(../../lib/cccsturm.png); 96 | background-repeat: no-repeat; 97 | background-position: 3% 3%; 98 | background-attachment: fixed; 99 | -webkit-background-size: contain; 100 | -moz-background-size: contain; 101 | -o-background-size: contain; 102 | background-size: contain; 103 | } 104 | section { 105 | p { 106 | margin: 0 0 10px 0; 107 | line-height: 1.2em; 108 | } 109 | h1,h2,h3,h4,h5,h6 { 110 | font-weight: bold; 111 | line-height: 0.9em; 112 | letter-spacing: 0.02em; 113 | } 114 | .width30 { 115 | width: 30%; 116 | } 117 | .width50 { 118 | width: 50%; 119 | } 120 | .width70 { 121 | width: 70%; 122 | } 123 | .floatleft { 124 | float: left; 125 | } 126 | img { 127 | border: 0; 128 | box-shadow: none; 129 | } 130 | img.framed { 131 | border: 1px solid #444; 132 | box-shadow: 0 0 25px rgba(0, 0, 0, 0.44); 133 | } 134 | } 135 | section.dark { 136 | color: white; 137 | 138 | a { 139 | color: lighten( $cccsBlau, 40% ); 140 | } 141 | a:hover { 142 | color: lighten( $cccsBlau, 20% ); 143 | } 144 | } 145 | } 146 | 147 | body.print-pdf .reveal { 148 | a { 149 | background-color: lighten($cccsGruen, 40%); 150 | } 151 | section.dark a { 152 | background-color: darken($cccsBlau, 20%); 153 | } 154 | } 155 | 156 | -------------------------------------------------------------------------------- /css/theme/cccs.css: -------------------------------------------------------------------------------- 1 | .dropshadow { 2 | -webkit-filter: drop-shadow(5px 5px 5px #888); 3 | filter: drop-shadow(5px 5px 5px #888); } 4 | 5 | body.print-pdf .reveal .slides .noprint { 6 | display: none !important; } 7 | 8 | body:not(.print-pdf) .reveal .slides .onlyprint { 9 | display: none !important; } 10 | 11 | img.floatleft { 12 | float: left; 13 | padding-right: 10px; } 14 | 15 | img.floatright { 16 | float: right; 17 | padding-left: 10px; } 18 | 19 | .reveal section .brighten { 20 | background: rgba(255, 255, 255, 0.6); 21 | -webkit-box-shadow: 0px 0px 5px 15px rgba(255, 255, 255, 0.6); 22 | -moz-box-shadow: 0px 0px 5px 15px rgba(255, 255, 255, 0.6); 23 | box-shadow: 0px 0px 5px 15px rgba(255, 255, 255, 0.6); } 24 | .reveal section .darken { 25 | background: rgba(0, 0, 0, 0.6); 26 | -webkit-box-shadow: 0px 0px 5px 15px rgba(0, 0, 0, 0.6); 27 | -moz-box-shadow: 0px 0px 5px 15px rgba(0, 0, 0, 0.6); 28 | box-shadow: 0px 0px 5px 15px rgba(0, 0, 0, 0.6); } 29 | .reveal section .textglow { 30 | text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9); } 31 | .reveal section .textshadow { 32 | text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); } 33 | .reveal .slides .textleft { 34 | text-align: left; } 35 | .reveal .slides .large { 36 | font-size: 150%; } 37 | .reveal .slides .footnote { 38 | position: absolute; 39 | top: 95%; 40 | left: 0%; 41 | width: 95%; 42 | font-size: 70%; 43 | text-align: right; 44 | padding-left: 20px; 45 | padding-right: 25px; 46 | background: rgba(255, 255, 255, 0.5); } 47 | 48 | @font-face { 49 | font-family: 'TitilliumText'; 50 | src: url("../../lib/font/titillium-light-webfont.eot"); 51 | src: url("../../lib/font/titillium-light-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/titillium-light-webfont.woff") format("woff"), url("../../lib/font/titillium-light-webfont.ttf") format("truetype"), url("../../lib/font/titillium-light-webfont.svg#TitilliumText22LLight") format("svg"); 52 | font-weight: normal; 53 | font-style: normal; } 54 | @font-face { 55 | font-family: 'TitilliumText'; 56 | src: url("../../lib/font/titillium-regular-webfont.eot"); 57 | src: url("../../lib/font/titillium-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/titillium-regular-webfont.woff") format("woff"), url("../../lib/font/titillium-regular-webfont.ttf") format("truetype"), url("../../lib/font/titillium-regular-webfont.svg#TitilliumText22Regular") format("svg"); 58 | font-weight: 500; 59 | font-style: normal; } 60 | @font-face { 61 | font-family: 'TitilliumText'; 62 | src: url("../../lib/font/titillium-semibold-webfont.eot"); 63 | src: url("../../lib/font/titillium-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/titillium-semibold-webfont.woff") format("woff"), url("../../lib/font/titillium-semibold-webfont.ttf") format("truetype"), url("../../lib/font/titillium-semibold-webfont.svg#TitilliumText22LSemibold") format("svg"); 64 | font-weight: 600; 65 | font-style: normal; } 66 | @font-face { 67 | font-family: 'TitilliumText'; 68 | src: url("../../lib/font/titillium-bold-webfont.eot"); 69 | src: url("../../lib/font/titillium-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/titillium-bold-webfont.woff") format("woff"), url("../../lib/font/titillium-bold-webfont.ttf") format("truetype"), url("../../lib/font/titillium-bold-webfont.svg#TitilliumText22LBold") format("svg"); 70 | font-weight: bold; 71 | font-style: normal; } 72 | html * { 73 | color-profile: sRGB; 74 | rendering-intent: auto; } 75 | 76 | /********************************************* 77 | * GLOBAL STYLES 78 | *********************************************/ 79 | body { 80 | background-color: #fff; } 81 | @media screen { 82 | body { 83 | background-image: url(../../lib/bg.png); 84 | background-repeat: repeat; } } 85 | 86 | .reveal { 87 | font-family: "TitilliumText", "Helvetica Neue", Helvetica, Arial, sans-serif; 88 | font-size: 36px; 89 | font-weight: normal; 90 | color: #000; } 91 | 92 | ::selection { 93 | color: #fff; 94 | background: #95C03D; 95 | text-shadow: none; } 96 | 97 | ::-moz-selection { 98 | color: #fff; 99 | background: #95C03D; 100 | text-shadow: none; } 101 | 102 | .reveal .slides > section, 103 | .reveal .slides > section > section { 104 | line-height: 1.3; 105 | font-weight: inherit; } 106 | 107 | /********************************************* 108 | * HEADERS 109 | *********************************************/ 110 | .reveal h1, 111 | .reveal h2, 112 | .reveal h3, 113 | .reveal h4, 114 | .reveal h5, 115 | .reveal h6 { 116 | margin: 0 0 20px 0; 117 | color: #95C03D; 118 | font-family: "TitilliumText", "Helvetica Neue", Helvetica, Arial, sans-serif; 119 | font-weight: normal; 120 | line-height: 1.2; 121 | letter-spacing: normal; 122 | text-transform: uppercase; 123 | text-shadow: none; 124 | word-wrap: break-word; } 125 | 126 | .reveal h1 { 127 | font-size: 3.77em; } 128 | 129 | .reveal h2 { 130 | font-size: 2.11em; } 131 | 132 | .reveal h3 { 133 | font-size: 1.55em; } 134 | 135 | .reveal h4 { 136 | font-size: 1em; } 137 | 138 | .reveal h1 { 139 | text-shadow: none; } 140 | 141 | /********************************************* 142 | * OTHER 143 | *********************************************/ 144 | .reveal p { 145 | margin: 20px 0; 146 | line-height: 1.3; } 147 | 148 | /* Ensure certain elements are never larger than the slide itself */ 149 | .reveal img, 150 | .reveal video, 151 | .reveal iframe { 152 | max-width: 95%; 153 | max-height: 95%; } 154 | 155 | .reveal strong, 156 | .reveal b { 157 | font-weight: bold; } 158 | 159 | .reveal em { 160 | font-style: italic; } 161 | 162 | .reveal ol, 163 | .reveal dl, 164 | .reveal ul { 165 | display: inline-block; 166 | text-align: left; 167 | margin: 0 0 0 1em; } 168 | 169 | .reveal ol { 170 | list-style-type: decimal; } 171 | 172 | .reveal ul { 173 | list-style-type: disc; } 174 | 175 | .reveal ul ul { 176 | list-style-type: square; } 177 | 178 | .reveal ul ul ul { 179 | list-style-type: circle; } 180 | 181 | .reveal ul ul, 182 | .reveal ul ol, 183 | .reveal ol ol, 184 | .reveal ol ul { 185 | display: block; 186 | margin-left: 40px; } 187 | 188 | .reveal dt { 189 | font-weight: bold; } 190 | 191 | .reveal dd { 192 | margin-left: 40px; } 193 | 194 | .reveal blockquote { 195 | display: block; 196 | position: relative; 197 | width: 70%; 198 | margin: 20px auto; 199 | padding: 5px; 200 | font-style: italic; 201 | background: rgba(255, 255, 255, 0.05); 202 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 203 | 204 | .reveal blockquote p:first-child, 205 | .reveal blockquote p:last-child { 206 | display: inline-block; } 207 | 208 | .reveal q { 209 | font-style: italic; } 210 | 211 | .reveal pre { 212 | display: block; 213 | position: relative; 214 | width: 90%; 215 | margin: 20px auto; 216 | text-align: left; 217 | font-size: 0.55em; 218 | font-family: monospace; 219 | line-height: 1.2em; 220 | word-wrap: break-word; 221 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 222 | 223 | .reveal code { 224 | font-family: monospace; 225 | text-transform: none; } 226 | 227 | .reveal pre code { 228 | display: block; 229 | padding: 5px; 230 | overflow: auto; 231 | max-height: 400px; 232 | word-wrap: normal; } 233 | 234 | .reveal table { 235 | margin: auto; 236 | border-collapse: collapse; 237 | border-spacing: 0; } 238 | 239 | .reveal table th { 240 | font-weight: bold; } 241 | 242 | .reveal table th, 243 | .reveal table td { 244 | text-align: left; 245 | padding: 0.2em 0.5em 0.2em 0.5em; 246 | border-bottom: 1px solid; } 247 | 248 | .reveal table th[align="center"], 249 | .reveal table td[align="center"] { 250 | text-align: center; } 251 | 252 | .reveal table th[align="right"], 253 | .reveal table td[align="right"] { 254 | text-align: right; } 255 | 256 | .reveal table tbody tr:last-child th, 257 | .reveal table tbody tr:last-child td { 258 | border-bottom: none; } 259 | 260 | .reveal sup { 261 | vertical-align: super; } 262 | 263 | .reveal sub { 264 | vertical-align: sub; } 265 | 266 | .reveal small { 267 | display: inline-block; 268 | font-size: 0.6em; 269 | line-height: 1.2em; 270 | vertical-align: top; } 271 | 272 | .reveal small * { 273 | vertical-align: top; } 274 | 275 | /********************************************* 276 | * LINKS 277 | *********************************************/ 278 | .reveal a { 279 | color: #002E55; 280 | text-decoration: none; 281 | -webkit-transition: color .15s ease; 282 | -moz-transition: color .15s ease; 283 | transition: color .15s ease; } 284 | 285 | .reveal a:hover { 286 | color: #0065bb; 287 | text-shadow: none; 288 | border: none; } 289 | 290 | .reveal .roll span:after { 291 | color: #fff; 292 | background: #000509; } 293 | 294 | /********************************************* 295 | * IMAGES 296 | *********************************************/ 297 | .reveal section img { 298 | margin: 15px 0px; 299 | background: rgba(255, 255, 255, 0.12); 300 | border: 4px solid #000; 301 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 302 | 303 | .reveal section img.plain { 304 | border: 0; 305 | box-shadow: none; } 306 | 307 | .reveal a img { 308 | -webkit-transition: all .15s linear; 309 | -moz-transition: all .15s linear; 310 | transition: all .15s linear; } 311 | 312 | .reveal a:hover img { 313 | background: rgba(255, 255, 255, 0.2); 314 | border-color: #002E55; 315 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 316 | 317 | /********************************************* 318 | * NAVIGATION CONTROLS 319 | *********************************************/ 320 | .reveal .controls { 321 | color: #002E55; } 322 | 323 | /********************************************* 324 | * PROGRESS BAR 325 | *********************************************/ 326 | .reveal .progress { 327 | background: rgba(0, 0, 0, 0.2); 328 | color: #002E55; } 329 | 330 | .reveal .progress span { 331 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 332 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 333 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 334 | 335 | strong { 336 | font-weight: 600; } 337 | 338 | @media screen { 339 | .reveal { 340 | background-image: url(../../lib/cccsturm.png); 341 | background-repeat: no-repeat; 342 | background-position: 3% 3%; 343 | background-attachment: fixed; 344 | -webkit-background-size: contain; 345 | -moz-background-size: contain; 346 | -o-background-size: contain; 347 | background-size: contain; } } 348 | .reveal section p { 349 | margin: 0 0 10px 0; 350 | line-height: 1.2em; } 351 | .reveal section h1, .reveal section h2, .reveal section h3, .reveal section h4, .reveal section h5, .reveal section h6 { 352 | font-weight: bold; 353 | line-height: 0.9em; 354 | letter-spacing: 0.02em; } 355 | .reveal section .width30 { 356 | width: 30%; } 357 | .reveal section .width50 { 358 | width: 50%; } 359 | .reveal section .width70 { 360 | width: 70%; } 361 | .reveal section .floatleft { 362 | float: left; } 363 | .reveal section img { 364 | border: 0; 365 | box-shadow: none; } 366 | .reveal section img.framed { 367 | border: 1px solid #444; 368 | box-shadow: 0 0 25px rgba(0, 0, 0, 0.44); } 369 | .reveal section.dark { 370 | color: white; } 371 | .reveal section.dark a { 372 | color: #229aff; } 373 | .reveal section.dark a:hover { 374 | color: #0065bb; } 375 | 376 | body.print-pdf .reveal a { 377 | background-color: #e9f2d7; } 378 | body.print-pdf .reveal section.dark a { 379 | background-color: black; } 380 | 381 | /*# sourceMappingURL=cccs.css.map */ 382 | -------------------------------------------------------------------------------- /lib/font/titillium-black-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | -------------------------------------------------------------------------------- /lib/font/titillium-bold-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | -------------------------------------------------------------------------------- /lib/font/titillium-boldupright-webfont.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | --------------------------------------------------------------------------------