simple.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. @import url(http://fonts.googleapis.com/css?family=News+Cycle:400,700);
  2. @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  3. /**
  4. * A simple theme for reveal.js presentations, similar
  5. * to the default theme. The accent color is darkblue.
  6. *
  7. * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
  8. * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  9. */
  10. /*********************************************
  11. * GLOBAL STYLES
  12. *********************************************/
  13. body {
  14. background: white;
  15. background-color: white;
  16. }
  17. .reveal {
  18. font-family: "Lato", Times, "Times New Roman", serif;
  19. font-size: 36px;
  20. font-weight: 200;
  21. letter-spacing: -0.02em;
  22. color: black;
  23. }
  24. ::selection {
  25. color: white;
  26. background: rgba(0, 0, 0, 0.99);
  27. text-shadow: none;
  28. }
  29. /*********************************************
  30. * HEADERS
  31. *********************************************/
  32. .reveal h1,
  33. .reveal h2,
  34. .reveal h3,
  35. .reveal h4,
  36. .reveal h5,
  37. .reveal h6 {
  38. margin: 0 0 20px 0;
  39. color: black;
  40. font-family: "News Cycle", Impact, sans-serif;
  41. line-height: 0.9em;
  42. letter-spacing: 0.02em;
  43. text-transform: none;
  44. text-shadow: none;
  45. }
  46. .reveal h1 {
  47. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  48. }
  49. /*********************************************
  50. * LINKS
  51. *********************************************/
  52. .reveal a:not(.image) {
  53. color: darkblue;
  54. text-decoration: none;
  55. -webkit-transition: color .15s ease;
  56. -moz-transition: color .15s ease;
  57. -ms-transition: color .15s ease;
  58. -o-transition: color .15s ease;
  59. transition: color .15s ease;
  60. }
  61. .reveal a:not(.image):hover {
  62. color: #0000f1;
  63. text-shadow: none;
  64. border: none;
  65. border-radius: 2px;
  66. }
  67. .reveal .roll span:after {
  68. color: #fff;
  69. background: #00003f;
  70. }
  71. /*********************************************
  72. * IMAGES
  73. *********************************************/
  74. .reveal section img {
  75. margin: 15px;
  76. background: rgba(255, 255, 255, 0.12);
  77. border: 4px solid black;
  78. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  79. -webkit-transition: all .2s linear;
  80. -moz-transition: all .2s linear;
  81. -ms-transition: all .2s linear;
  82. -o-transition: all .2s linear;
  83. transition: all .2s linear;
  84. }
  85. .reveal a:hover img {
  86. background: rgba(255, 255, 255, 0.2);
  87. border-color: darkblue;
  88. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  89. }
  90. /*********************************************
  91. * NAVIGATION CONTROLS
  92. *********************************************/
  93. .reveal .controls div.left,
  94. .reveal .controls div.left.enabled {
  95. border-right-color: darkblue;
  96. }
  97. .reveal .controls div.right,
  98. .reveal .controls div.right.enabled {
  99. border-left-color: darkblue;
  100. }
  101. .reveal .controls div.up,
  102. .reveal .controls div.up.enabled {
  103. border-bottom-color: darkblue;
  104. }
  105. .reveal .controls div.down,
  106. .reveal .controls div.down.enabled {
  107. border-top-color: darkblue;
  108. }
  109. .reveal .controls div.left.enabled:hover {
  110. border-right-color: #0000f1;
  111. }
  112. .reveal .controls div.right.enabled:hover {
  113. border-left-color: #0000f1;
  114. }
  115. .reveal .controls div.up.enabled:hover {
  116. border-bottom-color: #0000f1;
  117. }
  118. .reveal .controls div.down.enabled:hover {
  119. border-top-color: #0000f1;
  120. }
  121. /*********************************************
  122. * PROGRESS BAR
  123. *********************************************/
  124. .reveal .progress {
  125. background: rgba(0, 0, 0, 0.2);
  126. }
  127. .reveal .progress span {
  128. background: darkblue;
  129. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  130. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  131. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  132. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  133. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  134. }