serif.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 {
  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: 1em;
  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 {
  47. color: #51483d;
  48. text-decoration: none;
  49. -webkit-transition: color .15s ease;
  50. -moz-transition: color .15s ease;
  51. transition: color .15s ease; }
  52. .reveal a:hover {
  53. color: #8b7c69;
  54. text-shadow: none;
  55. border: none; }
  56. .reveal .roll span:after {
  57. color: #fff;
  58. background: #25211c; }
  59. /*********************************************
  60. * IMAGES
  61. *********************************************/
  62. .reveal section img {
  63. margin: 15px 0px;
  64. background: rgba(255, 255, 255, 0.12);
  65. border: 4px solid black;
  66. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  67. .reveal a img {
  68. -webkit-transition: all .15s linear;
  69. -moz-transition: all .15s linear;
  70. transition: all .15s linear; }
  71. .reveal a:hover img {
  72. background: rgba(255, 255, 255, 0.2);
  73. border-color: #51483d;
  74. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  75. /*********************************************
  76. * NAVIGATION CONTROLS
  77. *********************************************/
  78. .reveal .controls div.navigate-left,
  79. .reveal .controls div.navigate-left.enabled {
  80. border-right-color: #51483d; }
  81. .reveal .controls div.navigate-right,
  82. .reveal .controls div.navigate-right.enabled {
  83. border-left-color: #51483d; }
  84. .reveal .controls div.navigate-up,
  85. .reveal .controls div.navigate-up.enabled {
  86. border-bottom-color: #51483d; }
  87. .reveal .controls div.navigate-down,
  88. .reveal .controls div.navigate-down.enabled {
  89. border-top-color: #51483d; }
  90. .reveal .controls div.navigate-left.enabled:hover {
  91. border-right-color: #8b7c69; }
  92. .reveal .controls div.navigate-right.enabled:hover {
  93. border-left-color: #8b7c69; }
  94. .reveal .controls div.navigate-up.enabled:hover {
  95. border-bottom-color: #8b7c69; }
  96. .reveal .controls div.navigate-down.enabled:hover {
  97. border-top-color: #8b7c69; }
  98. /*********************************************
  99. * PROGRESS BAR
  100. *********************************************/
  101. .reveal .progress {
  102. background: rgba(0, 0, 0, 0.2); }
  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. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  108. /*********************************************
  109. * SLIDE NUMBER
  110. *********************************************/
  111. .reveal .slide-number {
  112. color: #51483d; }