sky.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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: #f7fbfc;
  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. }
  20. .reveal {
  21. font-family: "Open Sans", sans-serif;
  22. font-size: 36px;
  23. font-weight: 200;
  24. letter-spacing: -0.02em;
  25. color: #333333;
  26. }
  27. ::selection {
  28. color: white;
  29. background: #134674;
  30. text-shadow: none;
  31. }
  32. /*********************************************
  33. * HEADERS
  34. *********************************************/
  35. .reveal h1,
  36. .reveal h2,
  37. .reveal h3,
  38. .reveal h4,
  39. .reveal h5,
  40. .reveal h6 {
  41. margin: 0 0 20px 0;
  42. color: #333333;
  43. font-family: "Quicksand", sans-serif;
  44. line-height: 0.9em;
  45. letter-spacing: -0.08em;
  46. text-transform: uppercase;
  47. text-shadow: none;
  48. }
  49. .reveal h1 {
  50. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  51. }
  52. /*********************************************
  53. * LINKS
  54. *********************************************/
  55. .reveal a:not(.image) {
  56. color: #3b759e;
  57. text-decoration: none;
  58. -webkit-transition: color .15s ease;
  59. -moz-transition: color .15s ease;
  60. -ms-transition: color .15s ease;
  61. -o-transition: color .15s ease;
  62. transition: color .15s ease;
  63. }
  64. .reveal a:not(.image):hover {
  65. color: #74a7cb;
  66. text-shadow: none;
  67. border: none;
  68. border-radius: 2px;
  69. }
  70. .reveal .roll span:after {
  71. color: #fff;
  72. background: #264c66;
  73. }
  74. /*********************************************
  75. * IMAGES
  76. *********************************************/
  77. .reveal section img {
  78. margin: 15px;
  79. background: rgba(255, 255, 255, 0.12);
  80. border: 4px solid #333333;
  81. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  82. -webkit-transition: all .2s linear;
  83. -moz-transition: all .2s linear;
  84. -ms-transition: all .2s linear;
  85. -o-transition: all .2s linear;
  86. transition: all .2s linear;
  87. }
  88. .reveal a:hover img {
  89. background: rgba(255, 255, 255, 0.2);
  90. border-color: #3b759e;
  91. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  92. }
  93. /*********************************************
  94. * NAVIGATION CONTROLS
  95. *********************************************/
  96. .reveal .controls a {
  97. color: #333333;
  98. }
  99. .reveal .controls a.enabled {
  100. color: #74a7cb;
  101. text-shadow: 0px 0px 2px rgba(144, 207, 213, 0.3);
  102. }
  103. /*********************************************
  104. * PROGRESS BAR
  105. *********************************************/
  106. .reveal .progress {
  107. background: rgba(0, 0, 0, 0.2);
  108. }
  109. .reveal .progress span {
  110. background: #3b759e;
  111. -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  112. -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  113. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  114. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  115. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  116. }