simple.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. }
  66. .reveal .roll span:after {
  67. color: #fff;
  68. background: #00003f;
  69. }
  70. /*********************************************
  71. * IMAGES
  72. *********************************************/
  73. .reveal section img {
  74. margin: 15px;
  75. background: rgba(255, 255, 255, 0.12);
  76. border: 4px solid black;
  77. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  78. -webkit-transition: all .2s linear;
  79. -moz-transition: all .2s linear;
  80. -ms-transition: all .2s linear;
  81. -o-transition: all .2s linear;
  82. transition: all .2s linear;
  83. }
  84. .reveal a:hover img {
  85. background: rgba(255, 255, 255, 0.2);
  86. border-color: darkblue;
  87. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  88. }
  89. /*********************************************
  90. * NAVIGATION CONTROLS
  91. *********************************************/
  92. .reveal .controls div.left,
  93. .reveal .controls div.left.enabled {
  94. border-right-color: darkblue;
  95. }
  96. .reveal .controls div.right,
  97. .reveal .controls div.right.enabled {
  98. border-left-color: darkblue;
  99. }
  100. .reveal .controls div.up,
  101. .reveal .controls div.up.enabled {
  102. border-bottom-color: darkblue;
  103. }
  104. .reveal .controls div.down,
  105. .reveal .controls div.down.enabled {
  106. border-top-color: darkblue;
  107. }
  108. .reveal .controls div.left.enabled:hover {
  109. border-right-color: #0000f1;
  110. }
  111. .reveal .controls div.right.enabled:hover {
  112. border-left-color: #0000f1;
  113. }
  114. .reveal .controls div.up.enabled:hover {
  115. border-bottom-color: #0000f1;
  116. }
  117. .reveal .controls div.down.enabled:hover {
  118. border-top-color: #0000f1;
  119. }
  120. /*********************************************
  121. * PROGRESS BAR
  122. *********************************************/
  123. .reveal .progress {
  124. background: rgba(0, 0, 0, 0.2);
  125. }
  126. .reveal .progress span {
  127. background: darkblue;
  128. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  129. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  130. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  131. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  132. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  133. }