serif.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. }
  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 div.left,
  91. .reveal .controls div.left.enabled {
  92. border-right-color: #51483d;
  93. }
  94. .reveal .controls div.right,
  95. .reveal .controls div.right.enabled {
  96. border-left-color: #51483d;
  97. }
  98. .reveal .controls div.up,
  99. .reveal .controls div.up.enabled {
  100. border-bottom-color: #51483d;
  101. }
  102. .reveal .controls div.down,
  103. .reveal .controls div.down.enabled {
  104. border-top-color: #51483d;
  105. }
  106. .reveal .controls div.left.enabled:hover {
  107. border-right-color: #8b7c69;
  108. }
  109. .reveal .controls div.right.enabled:hover {
  110. border-left-color: #8b7c69;
  111. }
  112. .reveal .controls div.up.enabled:hover {
  113. border-bottom-color: #8b7c69;
  114. }
  115. .reveal .controls div.down.enabled:hover {
  116. border-top-color: #8b7c69;
  117. }
  118. /*********************************************
  119. * PROGRESS BAR
  120. *********************************************/
  121. .reveal .progress {
  122. background: rgba(0, 0, 0, 0.2);
  123. }
  124. .reveal .progress span {
  125. background: #51483d;
  126. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  127. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  128. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  129. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  130. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  131. }