CSS to fix the obsidian presentation slide

One of the reason why i use obsidian is, for viewing my technical documentation (which usually includes fenced code blocks) in presentation slide.

But as of now (in version 0.14.2) presentation in Obsidian is not usable, cause slides don’t fit on a screen and code blocks has scrollbar instead of showing the full content.

Up until now i have been using a obsidian plug-in called ‘advance slides’, which has similar issues like default obsidian slides and is not available for obsidian mobile app.

So, i have collected all the custom css available for obsidian slides from the internet and merged them to one css file. What these CSS do is

  • decrease font size to fit content
  • allows to scroll down for long contents.
  • increase codes font size in code blocks
  • disables scrollbar for code blocks
  • simplify the blockquotes
  • adds borders to table
  • fixed copy button and list positon
  • move navigation button to fit in mobile screen
/* .slides {
  height: 100% !important;
  width: 100% !important;
} */



/* font size */
.reveal {
  font-size: 1em; /* for mobile use 1.5em */
}

/* zoom level for (mobile) landscape mode */
/* @media screen and (orientation:landscape) {
  .slides {
    zoom: 1.1 !important;
  }
} */


/* ---------------------------------------------------- */

/* adds scrollbar */
.slides {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  pointer-events: auto !important;
}


/* hide scroll bar */
.slide ::-webkit-scrollbar {
  display: none !important;
}



/* ---------------------------------------------------- */

/* fixes padding for heading after list. e.g. see padding of this

- item1
## heading 2
*/
.reveal ul {
  padding-bottom: 1.5%;
}

.reveal ol {
  padding-bottom: 1.5%;
}



/* ---------------------------------------------------- */

/* code styles */
.reveal code {
  max-height: fit-content !important; /* disable this if you want scrollable code blocks */
  color: #ffad00;
}



/* code blocks */
.reveal pre {
  font-size: 0.8em;
  min-height: 1em;
  padding: 0.5em;
  /* margin-left: -2.5%; */
  /* width: 105%; */
  /* max-width: 70%; */
}



/* move copy button to top right corner */
.slide .copy-code-button {
  position: absolute;
  top: 4px;
  right: 4px;
  /* display: none !important; // hides the copy button */
}



/* ---------------------------------------------------- */

/* blockquotes */
.reveal blockquote {
  border-left: 5px solid var(--background-modifier-border);
  padding: 0 0 0 15px;
  font-size: 0.9em;
}

.reveal blockquote>p {
  margin: 0.5em 0;
}

/* ---------------------------------------------------- */

/* adds border to table */

.reveal table {
  /* font-size: 2em;   */
  width: 80%;
}

.reveal table>thead>tr>th {
  font-weight: 500;
  border: 1px solid hsl(0, 0%, 18%);
}

.reveal table>tbody>tr>td {
  border: 1px solid hsl(0, 0%, 18%);
}

.reveal table, th, td {
  border: 1px solid hsl(0, 0%, 18%);
}

.reveal th, td {
  min-width: 90px;
  line-height: 1.5;
}


/* ---------------------------------------------------- */

/* move left and right arrow button */
.navigate-right {
  /* bottom: 1.4em !important; */
  right: 8em !important;
}

.navigate-left {
  /* bottom: 1.4em !important; */
  right: 15em !important;
}

To try this out -

just copy this codes into a css file (e.g. slide_fixes.css) and move that file to your obsidian’s css snippets folder (.obsidian/snippets). Then turn on the snippet from obsidian → setting → appearence → css snippet.

Note: internal links (e.g. table of content) doesn’t work in obsidian slide ( i didn’t find any css snippet for that )

13 Likes

I can’t get my

.reveal {
  font-size: 1em; 
}

to work, even though I have it enabled in my custom css snippets? Is it still working to resize the fonts?