simple.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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: 1em;
  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 {
  48. color: darkblue;
  49. text-decoration: none;
  50. -webkit-transition: color .15s ease;
  51. -moz-transition: color .15s ease;
  52. transition: color .15s ease; }
  53. .reveal a:hover {
  54. color: #0000f1;
  55. text-shadow: none;
  56. border: none; }
  57. .reveal .roll span:after {
  58. color: #fff;
  59. background: #00003f; }
  60. /*********************************************
  61. * IMAGES
  62. *********************************************/
  63. .reveal section img {
  64. margin: 15px 0px;
  65. background: rgba(255, 255, 255, 0.12);
  66. border: 4px solid black;
  67. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  68. .reveal a img {
  69. -webkit-transition: all .15s linear;
  70. -moz-transition: all .15s linear;
  71. transition: all .15s linear; }
  72. .reveal a:hover img {
  73. background: rgba(255, 255, 255, 0.2);
  74. border-color: darkblue;
  75. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  76. /*********************************************
  77. * NAVIGATION CONTROLS
  78. *********************************************/
  79. .reveal .controls div.navigate-left,
  80. .reveal .controls div.navigate-left.enabled {
  81. border-right-color: darkblue; }
  82. .reveal .controls div.navigate-right,
  83. .reveal .controls div.navigate-right.enabled {
  84. border-left-color: darkblue; }
  85. .reveal .controls div.navigate-up,
  86. .reveal .controls div.navigate-up.enabled {
  87. border-bottom-color: darkblue; }
  88. .reveal .controls div.navigate-down,
  89. .reveal .controls div.navigate-down.enabled {
  90. border-top-color: darkblue; }
  91. .reveal .controls div.navigate-left.enabled:hover {
  92. border-right-color: #0000f1; }
  93. .reveal .controls div.navigate-right.enabled:hover {
  94. border-left-color: #0000f1; }
  95. .reveal .controls div.navigate-up.enabled:hover {
  96. border-bottom-color: #0000f1; }
  97. .reveal .controls div.navigate-down.enabled:hover {
  98. border-top-color: #0000f1; }
  99. /*********************************************
  100. * PROGRESS BAR
  101. *********************************************/
  102. .reveal .progress {
  103. background: rgba(0, 0, 0, 0.2); }
  104. .reveal .progress span {
  105. background: darkblue;
  106. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  107. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  108. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  109. /*********************************************
  110. * SLIDE NUMBER
  111. *********************************************/
  112. .reveal .slide-number {
  113. color: darkblue; }