night.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
  2. @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
  3. /**
  4. * Black theme for reveal.js.
  5. *
  6. * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  7. */
  8. /*********************************************
  9. * GLOBAL STYLES
  10. *********************************************/
  11. body {
  12. background: #111111;
  13. background-color: #111111; }
  14. .reveal {
  15. font-family: "Open Sans", sans-serif;
  16. font-size: 30px;
  17. font-weight: normal;
  18. letter-spacing: -0.02em;
  19. color: #eeeeee; }
  20. ::selection {
  21. color: white;
  22. background: #e7ad52;
  23. text-shadow: none; }
  24. /*********************************************
  25. * HEADERS
  26. *********************************************/
  27. .reveal h1,
  28. .reveal h2,
  29. .reveal h3,
  30. .reveal h4,
  31. .reveal h5,
  32. .reveal h6 {
  33. margin: 0 0 20px 0;
  34. color: #eeeeee;
  35. font-family: "Montserrat", Impact, sans-serif;
  36. line-height: 0.9em;
  37. letter-spacing: -0.03em;
  38. text-transform: none;
  39. text-shadow: none; }
  40. .reveal h1 {
  41. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
  42. /*********************************************
  43. * LINKS
  44. *********************************************/
  45. .reveal a:not(.image) {
  46. color: #e7ad52;
  47. text-decoration: none;
  48. -webkit-transition: color .15s ease;
  49. -moz-transition: color .15s ease;
  50. -ms-transition: color .15s ease;
  51. -o-transition: color .15s ease;
  52. transition: color .15s ease; }
  53. .reveal a:not(.image):hover {
  54. color: #f3d7ac;
  55. text-shadow: none;
  56. border: none; }
  57. .reveal .roll span:after {
  58. color: #fff;
  59. background: #d08a1d; }
  60. /*********************************************
  61. * IMAGES
  62. *********************************************/
  63. .reveal section img {
  64. margin: 15px 0px;
  65. background: rgba(255, 255, 255, 0.12);
  66. border: 4px solid #eeeeee;
  67. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  68. -webkit-transition: all .2s linear;
  69. -moz-transition: all .2s linear;
  70. -ms-transition: all .2s linear;
  71. -o-transition: all .2s linear;
  72. transition: all .2s linear; }
  73. .reveal a:hover img {
  74. background: rgba(255, 255, 255, 0.2);
  75. border-color: #e7ad52;
  76. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  77. /*********************************************
  78. * NAVIGATION CONTROLS
  79. *********************************************/
  80. .reveal .controls div.navigate-left,
  81. .reveal .controls div.navigate-left.enabled {
  82. border-right-color: #e7ad52; }
  83. .reveal .controls div.navigate-right,
  84. .reveal .controls div.navigate-right.enabled {
  85. border-left-color: #e7ad52; }
  86. .reveal .controls div.navigate-up,
  87. .reveal .controls div.navigate-up.enabled {
  88. border-bottom-color: #e7ad52; }
  89. .reveal .controls div.navigate-down,
  90. .reveal .controls div.navigate-down.enabled {
  91. border-top-color: #e7ad52; }
  92. .reveal .controls div.navigate-left.enabled:hover {
  93. border-right-color: #f3d7ac; }
  94. .reveal .controls div.navigate-right.enabled:hover {
  95. border-left-color: #f3d7ac; }
  96. .reveal .controls div.navigate-up.enabled:hover {
  97. border-bottom-color: #f3d7ac; }
  98. .reveal .controls div.navigate-down.enabled:hover {
  99. border-top-color: #f3d7ac; }
  100. /*********************************************
  101. * PROGRESS BAR
  102. *********************************************/
  103. .reveal .progress {
  104. background: rgba(0, 0, 0, 0.2); }
  105. .reveal .progress span {
  106. background: #e7ad52;
  107. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  108. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  109. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  110. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  111. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  112. /*********************************************
  113. * SLIDE NUMBER
  114. *********************************************/
  115. .reveal .slide-number {
  116. color: #e7ad52; }