sky.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. @import url(http://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
  2. @import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
  3. /**
  4. * Sky 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: #add9e4;
  13. background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  14. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));
  15. background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  16. background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  17. background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  18. background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  19. background-color: #f7fbfc;
  20. }
  21. .reveal {
  22. font-family: "Open Sans", sans-serif;
  23. font-size: 36px;
  24. font-weight: 200;
  25. letter-spacing: -0.02em;
  26. color: #333333;
  27. }
  28. ::selection {
  29. color: white;
  30. background: #134674;
  31. text-shadow: none;
  32. }
  33. /*********************************************
  34. * HEADERS
  35. *********************************************/
  36. .reveal h1,
  37. .reveal h2,
  38. .reveal h3,
  39. .reveal h4,
  40. .reveal h5,
  41. .reveal h6 {
  42. margin: 0 0 20px 0;
  43. color: #333333;
  44. font-family: "Quicksand", sans-serif;
  45. line-height: 0.9em;
  46. letter-spacing: -0.08em;
  47. text-transform: uppercase;
  48. text-shadow: none;
  49. }
  50. .reveal h1 {
  51. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  52. }
  53. /*********************************************
  54. * LINKS
  55. *********************************************/
  56. .reveal a:not(.image) {
  57. color: #3b759e;
  58. text-decoration: none;
  59. -webkit-transition: color .15s ease;
  60. -moz-transition: color .15s ease;
  61. -ms-transition: color .15s ease;
  62. -o-transition: color .15s ease;
  63. transition: color .15s ease;
  64. }
  65. .reveal a:not(.image):hover {
  66. color: #74a7cb;
  67. text-shadow: none;
  68. border: none;
  69. border-radius: 2px;
  70. }
  71. .reveal .roll span:after {
  72. color: #fff;
  73. background: #264c66;
  74. }
  75. /*********************************************
  76. * IMAGES
  77. *********************************************/
  78. .reveal section img {
  79. margin: 15px;
  80. background: rgba(255, 255, 255, 0.12);
  81. border: 4px solid #333333;
  82. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  83. -webkit-transition: all .2s linear;
  84. -moz-transition: all .2s linear;
  85. -ms-transition: all .2s linear;
  86. -o-transition: all .2s linear;
  87. transition: all .2s linear;
  88. }
  89. .reveal a:hover img {
  90. background: rgba(255, 255, 255, 0.2);
  91. border-color: #3b759e;
  92. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  93. }
  94. /*********************************************
  95. * NAVIGATION CONTROLS
  96. *********************************************/
  97. .reveal .controls div.left,
  98. .reveal .controls div.left.enabled {
  99. border-right-color: #3b759e;
  100. }
  101. .reveal .controls div.right,
  102. .reveal .controls div.right.enabled {
  103. border-left-color: #3b759e;
  104. }
  105. .reveal .controls div.up,
  106. .reveal .controls div.up.enabled {
  107. border-bottom-color: #3b759e;
  108. }
  109. .reveal .controls div.down,
  110. .reveal .controls div.down.enabled {
  111. border-top-color: #3b759e;
  112. }
  113. .reveal .controls div.left.enabled:hover {
  114. border-right-color: #74a7cb;
  115. }
  116. .reveal .controls div.right.enabled:hover {
  117. border-left-color: #74a7cb;
  118. }
  119. .reveal .controls div.up.enabled:hover {
  120. border-bottom-color: #74a7cb;
  121. }
  122. .reveal .controls div.down.enabled:hover {
  123. border-top-color: #74a7cb;
  124. }
  125. /*********************************************
  126. * PROGRESS BAR
  127. *********************************************/
  128. .reveal .progress {
  129. background: rgba(0, 0, 0, 0.2);
  130. }
  131. .reveal .progress span {
  132. background: #3b759e;
  133. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  134. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  135. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  136. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  137. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  138. }