blood.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
  2. /**
  3. * Blood theme for reveal.js
  4. * Author: Walther http://github.com/Walther
  5. *
  6. * Designed to be used with highlight.js theme
  7. * "monokai_sublime.css" available from
  8. * https://github.com/isagalaev/highlight.js/
  9. *
  10. * For other themes, change $codeBackground accordingly.
  11. *
  12. */
  13. /*********************************************
  14. * GLOBAL STYLES
  15. *********************************************/
  16. body {
  17. background: #222222;
  18. background: -moz-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
  19. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222222));
  20. background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
  21. background: -o-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
  22. background: -ms-radial-gradient(center, circle cover, #626262 0%, #222222 100%);
  23. background: radial-gradient(center, circle cover, #626262 0%, #222222 100%);
  24. background-color: #2b2b2b; }
  25. .reveal {
  26. font-family: Ubuntu, "sans-serif";
  27. font-size: 36px;
  28. font-weight: normal;
  29. letter-spacing: -0.02em;
  30. color: #eeeeee; }
  31. ::selection {
  32. color: white;
  33. background: #aa2233;
  34. text-shadow: none; }
  35. /*********************************************
  36. * HEADERS
  37. *********************************************/
  38. .reveal h1,
  39. .reveal h2,
  40. .reveal h3,
  41. .reveal h4,
  42. .reveal h5,
  43. .reveal h6 {
  44. margin: 0 0 20px 0;
  45. color: #eeeeee;
  46. font-family: Ubuntu, "sans-serif";
  47. line-height: 1em;
  48. letter-spacing: 0.02em;
  49. text-transform: uppercase;
  50. text-shadow: 2px 2px 2px #222222; }
  51. .reveal h1 {
  52. text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
  53. /*********************************************
  54. * LINKS
  55. *********************************************/
  56. .reveal a {
  57. color: #aa2233;
  58. text-decoration: none;
  59. -webkit-transition: color .15s ease;
  60. -moz-transition: color .15s ease;
  61. transition: color .15s ease; }
  62. .reveal a:hover {
  63. color: #dd5566;
  64. text-shadow: none;
  65. border: none; }
  66. .reveal .roll span:after {
  67. color: #fff;
  68. background: #6a1520; }
  69. /*********************************************
  70. * IMAGES
  71. *********************************************/
  72. .reveal section img {
  73. margin: 15px 0px;
  74. background: rgba(255, 255, 255, 0.12);
  75. border: 4px solid #eeeeee;
  76. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
  77. .reveal a img {
  78. -webkit-transition: all .15s linear;
  79. -moz-transition: all .15s linear;
  80. transition: all .15s linear; }
  81. .reveal a:hover img {
  82. background: rgba(255, 255, 255, 0.2);
  83. border-color: #aa2233;
  84. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
  85. /*********************************************
  86. * NAVIGATION CONTROLS
  87. *********************************************/
  88. .reveal .controls div.navigate-left,
  89. .reveal .controls div.navigate-left.enabled {
  90. border-right-color: #aa2233; }
  91. .reveal .controls div.navigate-right,
  92. .reveal .controls div.navigate-right.enabled {
  93. border-left-color: #aa2233; }
  94. .reveal .controls div.navigate-up,
  95. .reveal .controls div.navigate-up.enabled {
  96. border-bottom-color: #aa2233; }
  97. .reveal .controls div.navigate-down,
  98. .reveal .controls div.navigate-down.enabled {
  99. border-top-color: #aa2233; }
  100. .reveal .controls div.navigate-left.enabled:hover {
  101. border-right-color: #dd5566; }
  102. .reveal .controls div.navigate-right.enabled:hover {
  103. border-left-color: #dd5566; }
  104. .reveal .controls div.navigate-up.enabled:hover {
  105. border-bottom-color: #dd5566; }
  106. .reveal .controls div.navigate-down.enabled:hover {
  107. border-top-color: #dd5566; }
  108. /*********************************************
  109. * PROGRESS BAR
  110. *********************************************/
  111. .reveal .progress {
  112. background: rgba(0, 0, 0, 0.2); }
  113. .reveal .progress span {
  114. background: #aa2233;
  115. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  116. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  117. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
  118. /*********************************************
  119. * SLIDE NUMBER
  120. *********************************************/
  121. .reveal .slide-number {
  122. color: #aa2233; }
  123. .reveal p {
  124. font-weight: 300;
  125. text-shadow: 1px 1px #222222; }
  126. .reveal h1,
  127. .reveal h2,
  128. .reveal h3,
  129. .reveal h4,
  130. .reveal h5,
  131. .reveal h6 {
  132. font-weight: 700; }
  133. .reveal a,
  134. .reveal a:hover {
  135. text-shadow: 2px 2px 2px #000; }
  136. .reveal small a,
  137. .reveal small a:hover {
  138. text-shadow: 1px 1px 1px #000; }
  139. .reveal p code {
  140. background-color: #23241f;
  141. display: inline-block;
  142. border-radius: 7px; }
  143. .reveal small code {
  144. vertical-align: baseline; }