custom.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* Configure Headlines to be smaller as default */
  2. .reveal h2 {
  3. font-size: 150%;
  4. }
  5. .reveal h1 {
  6. font-size: 170%;
  7. }
  8. .reveal h1 {
  9. text-align: center;
  10. }
  11. /* Center all Images & adjust their size */
  12. img {
  13. display: block !important;
  14. margin-left: auto !important;
  15. margin-right: auto !important;
  16. /*
  17. width: auto !important;
  18. height: 50vh !important;
  19. */
  20. }
  21. .reveal .slides { margin: 0; }
  22. /* Align all content on the slides to the left (Except headlines) */
  23. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  24. text-align: left;
  25. font-size: 90%;
  26. }
  27. /* center the author-text */
  28. .author {
  29. text-align: center;
  30. }
  31. /* Remove Margin from sources in columns */
  32. .column > pre {
  33. margin: 0px !important;
  34. }
  35. .column {
  36. vertical-align: middle !important;
  37. }
  38. /* Make Picutres stick to the left in columns */
  39. /*
  40. .column img {
  41. margin-left: 0px !important;
  42. width: auto !important;
  43. height: 30vh !important;
  44. }
  45. */
  46. /* Source-Code with syntax hl and no hl have different layouts, keep them the same */
  47. /*
  48. .sourceCode {
  49. margin: 10px auto !important;
  50. font-size: 90%;
  51. }
  52. /* Add custom classes here*/
  53. .test {
  54. border: 2px solid grey;
  55. box-shadow: 0px 5px 10px #0b77d5;
  56. padding: 20px;
  57. }
  58. .source {
  59. font-size: 40%;
  60. text-align: right !important;
  61. }
  62. */
  63. .imgfit {
  64. width: auto !important;
  65. height: 50vh !important;
  66. }
  67. .noborder {
  68. border: 0px solid black !important;
  69. }
  70. /* make the title always in the same position */
  71. /*
  72. .reveal .slides > section.present, .reveal .slides > section > section.present {
  73. min-height: 100% !important;
  74. display: flex !important;
  75. flex-direction: column !important;
  76. justify-content: center !important;
  77. position: absolute !important;
  78. top: 0 !important;
  79. }
  80. section > h1 {
  81. position: absolute !important;
  82. top: 0 !important;
  83. margin-left: auto !important;
  84. margin-right: auto !important;
  85. left: 0 !important;
  86. right: 0 !important;
  87. }
  88. .print-pdf .reveal .slides > section.present, .print-pdf .reveal .slides > section > section.present {
  89. min-height: 770px !important;
  90. position: relative !important;
  91. }
  92. */