simple.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /**
  2. * A simple theme for reveal.js presentations, similar
  3. * to the default theme. The accent color is darkblue.
  4. *
  5. * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
  6. * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  7. */
  8. @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
  9. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  10. section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
  11. color: #fff; }
  12. /*********************************************
  13. * GLOBAL STYLES
  14. *********************************************/
  15. body {
  16. background: #fff;
  17. background-color: #fff; }
  18. .reveal {
  19. font-family: "Lato", sans-serif;
  20. font-size: 40px;
  21. font-weight: normal;
  22. color: #000; }
  23. ::selection {
  24. color: #fff;
  25. background: rgba(0, 0, 0, 0.99);
  26. text-shadow: none; }
  27. ::-moz-selection {
  28. color: #fff;
  29. background: rgba(0, 0, 0, 0.99);
  30. text-shadow: none; }
  31. .reveal .slides > section,
  32. .reveal .slides > section > section {
  33. line-height: 1.3;
  34. font-weight: inherit; }
  35. /*********************************************
  36. * HEADERS
  37. *********************************************/
  38. .reveal h1,
  39. .reveal h2,
  40. .reveal h3,
  41. .reveal h4,
  42. .reveal h5,
  43. .reveal h6 {
  44. margin: 0 0 20px 0;
  45. color: #000;
  46. font-family: "News Cycle", Impact, sans-serif;
  47. font-weight: normal;
  48. line-height: 1.2;
  49. letter-spacing: normal;
  50. text-transform: none;
  51. text-shadow: none;
  52. word-wrap: break-word; }
  53. .reveal h1 {
  54. font-size: 3.77em; }
  55. .reveal h2 {
  56. font-size: 2.11em; }
  57. .reveal h3 {
  58. font-size: 1.55em; }
  59. .reveal h4 {
  60. font-size: 1em; }
  61. .reveal h1 {
  62. text-shadow: none; }
  63. /*********************************************
  64. * OTHER
  65. *********************************************/
  66. .reveal p {
  67. margin: 20px 0;
  68. line-height: 1.3; }
  69. /* Ensure certain elements are never larger than the slide itself */
  70. .reveal img,
  71. .reveal video,
  72. .reveal iframe {
  73. max-width: 95%;
  74. max-height: 95%; }
  75. .reveal strong,
  76. .reveal b {
  77. font-weight: bold; }
  78. .reveal em {
  79. font-style: italic; }
  80. .reveal ol,
  81. .reveal dl,
  82. .reveal ul {
  83. display: inline-block;
  84. text-align: left;
  85. margin: 0 0 0 1em; }
  86. .reveal ol {
  87. list-style-type: decimal; }
  88. .reveal ul {
  89. list-style-type: disc; }
  90. .reveal ul ul {
  91. list-style-type: square; }
  92. .reveal ul ul ul {
  93. list-style-type: circle; }
  94. .reveal ul ul,
  95. .reveal ul ol,
  96. .reveal ol ol,
  97. .reveal ol ul {
  98. display: block;
  99. margin-left: 40px; }
  100. .reveal dt {
  101. font-weight: bold; }
  102. .reveal dd {
  103. margin-left: 40px; }
  104. .reveal blockquote {
  105. display: block;
  106. position: relative;
  107. width: 70%;
  108. margin: 20px auto;
  109. padding: 5px;
  110. font-style: italic;
  111. background: rgba(255, 255, 255, 0.05);
  112. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
  113. .reveal blockquote p:first-child,
  114. .reveal blockquote p:last-child {
  115. display: inline-block; }
  116. .reveal q {
  117. font-style: italic; }
  118. .reveal pre {
  119. display: block;
  120. position: relative;
  121. width: 90%;
  122. margin: 20px auto;
  123. text-align: left;
  124. font-size: 0.55em;
  125. font-family: monospace;
  126. line-height: 1.2em;
  127. word-wrap: break-word;
  128. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
  129. .reveal code {
  130. font-family: monospace;
  131. text-transform: none; }
  132. .reveal pre code {
  133. display: block;
  134. padding: 5px;
  135. overflow: auto;
  136. max-height: 400px;
  137. word-wrap: normal; }
  138. .reveal table {
  139. margin: auto;
  140. border-collapse: collapse;
  141. border-spacing: 0; }
  142. .reveal table th {
  143. font-weight: bold; }
  144. .reveal table th,
  145. .reveal table td {
  146. text-align: left;
  147. padding: 0.2em 0.5em 0.2em 0.5em;
  148. border-bottom: 1px solid; }
  149. .reveal table th[align="center"],
  150. .reveal table td[align="center"] {
  151. text-align: center; }
  152. .reveal table th[align="right"],
  153. .reveal table td[align="right"] {
  154. text-align: right; }
  155. .reveal table tbody tr:last-child th,
  156. .reveal table tbody tr:last-child td {
  157. border-bottom: none; }
  158. .reveal sup {
  159. vertical-align: super; }
  160. .reveal sub {
  161. vertical-align: sub; }
  162. .reveal small {
  163. display: inline-block;
  164. font-size: 0.6em;
  165. line-height: 1.2em;
  166. vertical-align: top; }
  167. .reveal small * {
  168. vertical-align: top; }
  169. /*********************************************
  170. * LINKS
  171. *********************************************/
  172. .reveal a {
  173. color: #00008B;
  174. text-decoration: none;
  175. -webkit-transition: color .15s ease;
  176. -moz-transition: color .15s ease;
  177. transition: color .15s ease; }
  178. .reveal a:hover {
  179. color: #0000f1;
  180. text-shadow: none;
  181. border: none; }
  182. .reveal .roll span:after {
  183. color: #fff;
  184. background: #00003f; }
  185. /*********************************************
  186. * IMAGES
  187. *********************************************/
  188. .reveal section img {
  189. margin: 15px 0px;
  190. background: rgba(255, 255, 255, 0.12);
  191. border: 4px solid #000;
  192. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  193. .reveal section img.plain {
  194. border: 0;
  195. box-shadow: none; }
  196. .reveal a img {
  197. -webkit-transition: all .15s linear;
  198. -moz-transition: all .15s linear;
  199. transition: all .15s linear; }
  200. .reveal a:hover img {
  201. background: rgba(255, 255, 255, 0.2);
  202. border-color: #00008B;
  203. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  204. /*********************************************
  205. * NAVIGATION CONTROLS
  206. *********************************************/
  207. .reveal .controls {
  208. color: #00008B; }
  209. /*********************************************
  210. * PROGRESS BAR
  211. *********************************************/
  212. .reveal .progress {
  213. background: rgba(0, 0, 0, 0.2);
  214. color: #00008B; }
  215. .reveal .progress span {
  216. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  217. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  218. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }