serif.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. background-color: #f0f1eb;
  14. }
  15. .reveal {
  16. font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
  17. font-size: 36px;
  18. font-weight: 200;
  19. letter-spacing: -0.02em;
  20. color: black;
  21. }
  22. ::selection {
  23. color: white;
  24. background: #26351c;
  25. text-shadow: none;
  26. }
  27. /*********************************************
  28. * HEADERS
  29. *********************************************/
  30. .reveal h1,
  31. .reveal h2,
  32. .reveal h3,
  33. .reveal h4,
  34. .reveal h5,
  35. .reveal h6 {
  36. margin: 0 0 20px 0;
  37. color: #383d3d;
  38. font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
  39. line-height: 0.9em;
  40. letter-spacing: 0.02em;
  41. text-transform: none;
  42. text-shadow: none;
  43. }
  44. .reveal h1 {
  45. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  46. }
  47. /*********************************************
  48. * LINKS
  49. *********************************************/
  50. .reveal a:not(.image) {
  51. color: #51483d;
  52. text-decoration: none;
  53. -webkit-transition: color .15s ease;
  54. -moz-transition: color .15s ease;
  55. -ms-transition: color .15s ease;
  56. -o-transition: color .15s ease;
  57. transition: color .15s ease;
  58. }
  59. .reveal a:not(.image):hover {
  60. color: #8b7c69;
  61. text-shadow: none;
  62. border: none;
  63. border-radius: 2px;
  64. }
  65. .reveal .roll span:after {
  66. color: #fff;
  67. background: #25211c;
  68. }
  69. /*********************************************
  70. * IMAGES
  71. *********************************************/
  72. .reveal section img {
  73. margin: 15px;
  74. background: rgba(255, 255, 255, 0.12);
  75. border: 4px solid black;
  76. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  77. -webkit-transition: all .2s linear;
  78. -moz-transition: all .2s linear;
  79. -ms-transition: all .2s linear;
  80. -o-transition: all .2s linear;
  81. transition: all .2s linear;
  82. }
  83. .reveal a:hover img {
  84. background: rgba(255, 255, 255, 0.2);
  85. border-color: #51483d;
  86. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  87. }
  88. /*********************************************
  89. * NAVIGATION CONTROLS
  90. *********************************************/
  91. .reveal .controls div.left,
  92. .reveal .controls div.left.enabled {
  93. border-right-color: #51483d;
  94. }
  95. .reveal .controls div.right,
  96. .reveal .controls div.right.enabled {
  97. border-left-color: #51483d;
  98. }
  99. .reveal .controls div.up,
  100. .reveal .controls div.up.enabled {
  101. border-bottom-color: #51483d;
  102. }
  103. .reveal .controls div.down,
  104. .reveal .controls div.down.enabled {
  105. border-top-color: #51483d;
  106. }
  107. .reveal .controls div.left.enabled:hover {
  108. border-right-color: #8b7c69;
  109. }
  110. .reveal .controls div.right.enabled:hover {
  111. border-left-color: #8b7c69;
  112. }
  113. .reveal .controls div.up.enabled:hover {
  114. border-bottom-color: #8b7c69;
  115. }
  116. .reveal .controls div.down.enabled:hover {
  117. border-top-color: #8b7c69;
  118. }
  119. /*********************************************
  120. * PROGRESS BAR
  121. *********************************************/
  122. .reveal .progress {
  123. background: rgba(0, 0, 0, 0.2);
  124. }
  125. .reveal .progress span {
  126. background: #51483d;
  127. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  128. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  129. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  130. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  131. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  132. }