serif.css 3.6 KB

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