simple.css 3.9 KB

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