sky.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
  2. @import url(https://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. .reveal a:not(.image) {
  9. line-height: 1.3em; }
  10. /*********************************************
  11. * GLOBAL STYLES
  12. *********************************************/
  13. body {
  14. background: #add9e4;
  15. background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  16. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));
  17. background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  18. background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  19. background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  20. background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);
  21. background-color: #f7fbfc; }
  22. .reveal {
  23. font-family: "Open Sans", sans-serif;
  24. font-size: 36px;
  25. font-weight: 200;
  26. letter-spacing: -0.02em;
  27. color: #333333; }
  28. ::selection {
  29. color: white;
  30. background: #134674;
  31. text-shadow: none; }
  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. .reveal h1 {
  49. text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); }
  50. /*********************************************
  51. * LINKS
  52. *********************************************/
  53. .reveal a:not(.image) {
  54. color: #3b759e;
  55. text-decoration: none;
  56. -webkit-transition: color .15s ease;
  57. -moz-transition: color .15s ease;
  58. -ms-transition: color .15s ease;
  59. -o-transition: color .15s ease;
  60. transition: color .15s ease; }
  61. .reveal a:not(.image):hover {
  62. color: #74a7cb;
  63. text-shadow: none;
  64. border: none; }
  65. .reveal .roll span:after {
  66. color: #fff;
  67. background: #264c66; }
  68. /*********************************************
  69. * IMAGES
  70. *********************************************/
  71. .reveal section img {
  72. margin: 15px 0px;
  73. background: rgba(255, 255, 255, 0.12);
  74. border: 4px solid #333333;
  75. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  76. -webkit-transition: all .2s linear;
  77. -moz-transition: all .2s linear;
  78. -ms-transition: all .2s linear;
  79. -o-transition: all .2s linear;
  80. transition: all .2s linear; }
  81. .reveal a:hover img {
  82. background: rgba(255, 255, 255, 0.2);
  83. border-color: #3b759e;
  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: #3b759e; }
  91. .reveal .controls div.navigate-right,
  92. .reveal .controls div.navigate-right.enabled {
  93. border-left-color: #3b759e; }
  94. .reveal .controls div.navigate-up,
  95. .reveal .controls div.navigate-up.enabled {
  96. border-bottom-color: #3b759e; }
  97. .reveal .controls div.navigate-down,
  98. .reveal .controls div.navigate-down.enabled {
  99. border-top-color: #3b759e; }
  100. .reveal .controls div.navigate-left.enabled:hover {
  101. border-right-color: #74a7cb; }
  102. .reveal .controls div.navigate-right.enabled:hover {
  103. border-left-color: #74a7cb; }
  104. .reveal .controls div.navigate-up.enabled:hover {
  105. border-bottom-color: #74a7cb; }
  106. .reveal .controls div.navigate-down.enabled:hover {
  107. border-top-color: #74a7cb; }
  108. /*********************************************
  109. * PROGRESS BAR
  110. *********************************************/
  111. .reveal .progress {
  112. background: rgba(0, 0, 0, 0.2); }
  113. .reveal .progress span {
  114. background: #3b759e;
  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. -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  118. -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
  119. transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }