default.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  2. /**
  3. * Default theme for reveal.js.
  4. *
  5. * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  6. */
  7. @font-face {
  8. font-family: 'League Gothic';
  9. src: url("../../lib/font/league_gothic-webfont.eot");
  10. src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg");
  11. font-weight: normal;
  12. font-style: normal; }
  13. /*********************************************
  14. * GLOBAL STYLES
  15. *********************************************/
  16. body {
  17. background: #1c1e20;
  18. background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
  19. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));
  20. background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
  21. background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
  22. background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
  23. background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
  24. background-color: #2b2b2b; }
  25. .reveal {
  26. font-family: "Lato", sans-serif;
  27. font-size: 36px;
  28. font-weight: normal;
  29. letter-spacing: -0.02em;
  30. color: #eeeeee; }
  31. ::selection {
  32. color: white;
  33. background: #ff5e99;
  34. text-shadow: none; }
  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: #eeeeee;
  46. font-family: "League Gothic", Impact, sans-serif;
  47. line-height: 0.9em;
  48. letter-spacing: 0.02em;
  49. text-transform: uppercase;
  50. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
  51. .reveal h1 {
  52. text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 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); }
  53. /*********************************************
  54. * LINKS
  55. *********************************************/
  56. .reveal a:not(.image) {
  57. color: #13daec;
  58. text-decoration: none;
  59. -webkit-transition: color .15s ease;
  60. -moz-transition: color .15s ease;
  61. -ms-transition: color .15s ease;
  62. -o-transition: color .15s ease;
  63. transition: color .15s ease; }
  64. .reveal a:not(.image):hover {
  65. color: #71e9f4;
  66. text-shadow: none;
  67. border: none; }
  68. .reveal .roll span:after {
  69. color: #fff;
  70. background: #0d99a5; }
  71. /*********************************************
  72. * IMAGES
  73. *********************************************/
  74. .reveal section img {
  75. margin: 15px 0px;
  76. background: rgba(255, 255, 255, 0.12);
  77. border: 4px solid #eeeeee;
  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. .reveal a:hover img {
  85. background: rgba(255, 255, 255, 0.2);
  86. border-color: #13daec;
  87. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  88. /*********************************************
  89. * NAVIGATION CONTROLS
  90. *********************************************/
  91. .reveal .controls div.navigate-left,
  92. .reveal .controls div.navigate-left.enabled {
  93. border-right-color: #13daec; }
  94. .reveal .controls div.navigate-right,
  95. .reveal .controls div.navigate-right.enabled {
  96. border-left-color: #13daec; }
  97. .reveal .controls div.navigate-up,
  98. .reveal .controls div.navigate-up.enabled {
  99. border-bottom-color: #13daec; }
  100. .reveal .controls div.navigate-down,
  101. .reveal .controls div.navigate-down.enabled {
  102. border-top-color: #13daec; }
  103. .reveal .controls div.navigate-left.enabled:hover {
  104. border-right-color: #71e9f4; }
  105. .reveal .controls div.navigate-right.enabled:hover {
  106. border-left-color: #71e9f4; }
  107. .reveal .controls div.navigate-up.enabled:hover {
  108. border-bottom-color: #71e9f4; }
  109. .reveal .controls div.navigate-down.enabled:hover {
  110. border-top-color: #71e9f4; }
  111. /*********************************************
  112. * PROGRESS BAR
  113. *********************************************/
  114. .reveal .progress {
  115. background: rgba(0, 0, 0, 0.2); }
  116. .reveal .progress span {
  117. background: #13daec;
  118. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  119. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  120. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  121. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  122. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  123. /*********************************************
  124. * SLIDE NUMBER
  125. *********************************************/
  126. .reveal .slide-number {
  127. color: #13daec; }