Pictures!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

slide.css 748B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. body {
  2. background: white;
  3. margin: 0px;
  4. padding: 0px;
  5. width: 100%;
  6. height: 100%;
  7. overflow: hidden;
  8. font-size: 2em;
  9. font-family: sans-serif;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. text-align: center;
  14. }
  15. body #wrapper {
  16. display: inline-block;
  17. text-align: center;
  18. }
  19. h1 { font-size: 2em }
  20. h2 { font-size: 1.4em }
  21. h3 { font-size: 1.2em }
  22. p { font-size: 1.4em }
  23. .fullscreen {
  24. position: absolute;
  25. width: 100%;
  26. height: 100%;
  27. top: 0px;
  28. left: 50%;
  29. -moz-transform: translateX(-50%);
  30. -ms-transform: translateX(-50%);
  31. -webkit-transform: translateX(-50%);
  32. transform: translateX(-50%);
  33. }
  34. img.fullscreen {
  35. width: auto;
  36. }
  37. img.fullscreen.stretch {
  38. width: 100%;
  39. }
  40. ul,
  41. ol {
  42. text-align: left;
  43. line-height: 1.3em;
  44. }