/*-- scss:defaults --*/ $theme-darkblue: #02577B; $theme-blue: #99D9DD; $theme-white: #F7F8F9; $theme-yellow: #F4BA02; @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap'); $body-bg: $theme-darkblue; $body-color: $theme-white; $link-color: $theme-blue; $presentation-heading-color: lighten($theme-blue, 15%); $font-family-sans-serif: 'Manrope', sans-serif; $presentation-heading-font: 'IBM Plex Serif', serif; // Code for the code $font-family-monospace: 'Monaco'; /*-- scss:rules --*/ .blue { color: $theme-blue; font-weight: bold; } .yellow { color: $theme-yellow; font-weight: bold; } .reveal .slide a { text-decoration: underline; } // Code for the code .reveal div.sourceCode pre code { padding: 25px; } .reveal div.sourceCode { border: none; border-radius: 5px; margin-bottom: 10px !important; box-shadow: 0 20px 47px rgb(0 0 0 / 55%); width: fit-content; margin: auto !important; } .reveal section img { border: none; border-radius: 5px; margin-bottom: 10px !important; box-shadow: 0 20px 47px rgb(0 0 0 / 55%); width: fit-content; margin: auto !important; }