serif.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * A simple theme for reveal.js presentations, similar
  3. * to the default theme. The accent color is darkblue.
  4. *
  5. * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
  6. * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se; so is the theme - beige.css - that this is based off of.
  7. */
  8. /*********************************************
  9. * GLOBAL STYLES
  10. *********************************************/
  11. body {
  12. background: #f0f1eb;
  13. }
  14. .reveal {
  15. font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
  16. font-size: 36px;
  17. font-weight: 200;
  18. letter-spacing: -0.02em;
  19. color: black;
  20. }
  21. ::selection {
  22. color: white;
  23. background: #26351c;
  24. text-shadow: none;
  25. }
  26. /*********************************************
  27. * HEADERS
  28. *********************************************/
  29. .reveal h1,
  30. .reveal h2,
  31. .reveal h3,
  32. .reveal h4,
  33. .reveal h5,
  34. .reveal h6 {
  35. margin: 0 0 20px 0;
  36. color: #383d3d;
  37. font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
  38. line-height: 0.9em;
  39. letter-spacing: 0.02em;
  40. text-transform: none;
  41. text-shadow: none;
  42. }
  43. .reveal h1 {
  44. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  45. }
  46. /*********************************************
  47. * LINKS
  48. *********************************************/
  49. .reveal a:not(.image) {
  50. color: #51483d;
  51. text-decoration: none;
  52. -webkit-transition: color .15s ease;
  53. -moz-transition: color .15s ease;
  54. -ms-transition: color .15s ease;
  55. -o-transition: color .15s ease;
  56. transition: color .15s ease;
  57. }
  58. .reveal a:not(.image):hover {
  59. color: #8b7c69;
  60. text-shadow: none;
  61. border: none;
  62. border-radius: 2px;
  63. }
  64. .reveal .roll span:after {
  65. color: #fff;
  66. background: #25211c;
  67. }
  68. /*********************************************
  69. * IMAGES
  70. *********************************************/
  71. .reveal section img {
  72. margin: 15px;
  73. background: rgba(255, 255, 255, 0.12);
  74. border: 4px solid black;
  75. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  76. -webkit-transition: all .2s linear;
  77. -moz-transition: all .2s linear;
  78. -ms-transition: all .2s linear;
  79. -o-transition: all .2s linear;
  80. transition: all .2s linear;
  81. }
  82. .reveal a:hover img {
  83. background: rgba(255, 255, 255, 0.2);
  84. border-color: #51483d;
  85. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  86. }
  87. /*********************************************
  88. * NAVIGATION CONTROLS
  89. *********************************************/
  90. .reveal .controls a {
  91. color: black;
  92. }
  93. .reveal .controls a.enabled {
  94. color: #8b7c69;
  95. text-shadow: 0px 0px 2px rgba(144, 207, 213, 0.3);
  96. }
  97. /*********************************************
  98. * PROGRESS BAR
  99. *********************************************/
  100. .reveal .progress {
  101. background: rgba(0, 0, 0, 0.2);
  102. }
  103. .reveal .progress span {
  104. background: #51483d;
  105. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  106. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  107. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  108. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  109. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  110. }