sky.css 6.5 KB

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