league.css 6.9 KB

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