cri.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
  2. @import url(https://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. @font-face {
  14. font-family: 'amatic_bold';
  15. src: url('./amatic/Amatic-Bold.ttf') format('ttf'),
  16. url('bebasneue_light-webfont.woff') format('woff');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. body {
  21. background: white;
  22. background-color: white; }
  23. .reveal {
  24. font-family: "Lato", sans-serif;
  25. font-size: 36px;
  26. font-weight: normal;
  27. letter-spacing: -0.02em;
  28. color: black; }
  29. ::selection {
  30. color: white;
  31. background: rgba(0, 0, 0, 0.99);
  32. text-shadow: none; }
  33. /*********************************************
  34. * HEADERS
  35. *********************************************/
  36. .reveal h1,
  37. .reveal h2,
  38. .reveal h3,
  39. .reveal h4,
  40. .reveal h5,
  41. .reveal h6 {
  42. margin: 0 0 20px 0;
  43. color: black;
  44. font-family: 'amatic_bold', "News Cycle", Impact, sans-serif;
  45. line-height: 0.9em;
  46. letter-spacing: 0.02em;
  47. text-transform: none;
  48. text-shadow: none; }
  49. .reveal h1 {
  50. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
  51. /*********************************************
  52. * LINKS
  53. *********************************************/
  54. .reveal a:not(.image) {
  55. color: darkblue;
  56. text-decoration: none;
  57. -webkit-transition: color .15s ease;
  58. -moz-transition: color .15s ease;
  59. -ms-transition: color .15s ease;
  60. -o-transition: color .15s ease;
  61. transition: color .15s ease; }
  62. .reveal a:not(.image):hover {
  63. color: #0000f1;
  64. text-shadow: none;
  65. border: none; }
  66. .reveal .roll span:after {
  67. color: #fff;
  68. background: #00003f; }
  69. /*********************************************
  70. * IMAGES
  71. *********************************************/
  72. .reveal section img {
  73. margin: 15px 0px;
  74. background: rgba(255, 255, 255, 0.12);
  75. border: 4px solid black;
  76. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  77. -webkit-transition: all .2s linear;
  78. -moz-transition: all .2s linear;
  79. -ms-transition: all .2s linear;
  80. -o-transition: all .2s linear;
  81. transition: all .2s linear; }
  82. .reveal a:hover img {
  83. background: rgba(255, 255, 255, 0.2);
  84. border-color: darkblue;
  85. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  86. /*********************************************
  87. * NAVIGATION CONTROLS
  88. *********************************************/
  89. .reveal .controls div.navigate-left,
  90. .reveal .controls div.navigate-left.enabled {
  91. border-right-color: darkblue; }
  92. .reveal .controls div.navigate-right,
  93. .reveal .controls div.navigate-right.enabled {
  94. border-left-color: darkblue; }
  95. .reveal .controls div.navigate-up,
  96. .reveal .controls div.navigate-up.enabled {
  97. border-bottom-color: darkblue; }
  98. .reveal .controls div.navigate-down,
  99. .reveal .controls div.navigate-down.enabled {
  100. border-top-color: darkblue; }
  101. .reveal .controls div.navigate-left.enabled:hover {
  102. border-right-color: #0000f1; }
  103. .reveal .controls div.navigate-right.enabled:hover {
  104. border-left-color: #0000f1; }
  105. .reveal .controls div.navigate-up.enabled:hover {
  106. border-bottom-color: #0000f1; }
  107. .reveal .controls div.navigate-down.enabled:hover {
  108. border-top-color: #0000f1; }
  109. /*********************************************
  110. * PROGRESS BAR
  111. *********************************************/
  112. .reveal .progress {
  113. background: rgba(0, 0, 0, 0.2); }
  114. .reveal .progress span {
  115. background: darkblue;
  116. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  117. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  118. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  119. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  120. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  121. /*********************************************
  122. * SLIDE NUMBER
  123. *********************************************/
  124. .reveal .slide-number {
  125. color: darkblue; }