speaker-notes.css 655 B

123456789101112131415161718192021222324252627282930313233
  1. /* @@TITLE@@ version @@VERSION@@
  2. *
  3. * This is speaker-notes.css. This CSS supports the notion of "speaker
  4. * notes" in the chunked output. It allows chunked output to be used
  5. * as a set of foils for a presentation.
  6. *
  7. * See https://xsltng.docbook.org/
  8. *
  9. */
  10. main .speaker-notes {
  11. display: none;
  12. }
  13. main .speaker-notes .foil-wrapper {
  14. float: right;
  15. width: 400px;
  16. }
  17. main .speaker-notes .foil {
  18. border: 1px solid #7f7f7f;
  19. border-radius: 4px;
  20. padding: 1em;
  21. width: 800px;
  22. transform: scale(0.5);
  23. transform-origin: 0 0;
  24. }
  25. main .speaker-notes .foil h1 {
  26. margin-top: 0;
  27. font-size: 24pt;
  28. text-align: center;
  29. }