serif.css 3.8 KB

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