night.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 {
  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: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. .reveal a img {
  69. -webkit-transition: all .15s linear;
  70. -moz-transition: all .15s linear;
  71. -ms-transition: all .15s linear;
  72. -o-transition: all .15s linear;
  73. transition: all .15s linear; }
  74. .reveal a:hover img {
  75. background: rgba(255, 255, 255, 0.2);
  76. border-color: #e7ad52;
  77. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  78. /*********************************************
  79. * NAVIGATION CONTROLS
  80. *********************************************/
  81. .reveal .controls div.navigate-left,
  82. .reveal .controls div.navigate-left.enabled {
  83. border-right-color: #e7ad52; }
  84. .reveal .controls div.navigate-right,
  85. .reveal .controls div.navigate-right.enabled {
  86. border-left-color: #e7ad52; }
  87. .reveal .controls div.navigate-up,
  88. .reveal .controls div.navigate-up.enabled {
  89. border-bottom-color: #e7ad52; }
  90. .reveal .controls div.navigate-down,
  91. .reveal .controls div.navigate-down.enabled {
  92. border-top-color: #e7ad52; }
  93. .reveal .controls div.navigate-left.enabled:hover {
  94. border-right-color: #f3d7ac; }
  95. .reveal .controls div.navigate-right.enabled:hover {
  96. border-left-color: #f3d7ac; }
  97. .reveal .controls div.navigate-up.enabled:hover {
  98. border-bottom-color: #f3d7ac; }
  99. .reveal .controls div.navigate-down.enabled:hover {
  100. border-top-color: #f3d7ac; }
  101. /*********************************************
  102. * PROGRESS BAR
  103. *********************************************/
  104. .reveal .progress {
  105. background: rgba(0, 0, 0, 0.2); }
  106. .reveal .progress span {
  107. background: #e7ad52;
  108. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  109. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  110. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  111. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  112. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  113. /*********************************************
  114. * SLIDE NUMBER
  115. *********************************************/
  116. .reveal .slide-number {
  117. color: #e7ad52; }