beige.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /**
  2. * A beige theme for reveal.js presentations, similar
  3. * to the default theme.
  4. *
  5. * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  6. */
  7. /*********************************************
  8. * FONT-FACE DEFINITIONS
  9. *********************************************/
  10. @font-face {
  11. font-family: 'League Gothic';
  12. src: url('../../lib/font/league_gothic-webfont.eot');
  13. src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'),
  14. url('../../lib/font/league_gothic-webfont.woff') format('woff'),
  15. url('../../lib/font/league_gothic-webfont.ttf') format('truetype'),
  16. url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. /*********************************************
  21. * GLOBAL STYLES
  22. *********************************************/
  23. body {
  24. font-family: 'Lato', Times, 'Times New Roman', serif;
  25. font-size: 36px;
  26. font-weight: 200;
  27. letter-spacing: -0.02em;
  28. color: #333;
  29. background: #f7f3de;
  30. background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(247,242,211,1) 100%);
  31. background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(247,242,211,1)));
  32. background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
  33. background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
  34. background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
  35. background: radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(247,242,211,1) 100%);
  36. }
  37. ::-moz-selection {
  38. background:rgba(79, 64, 28, 0.99);
  39. color: white;
  40. }
  41. ::-webkit-selection {
  42. background:rgba(79, 64, 28, 0.99);
  43. color: white;
  44. }
  45. ::selection {
  46. background:rgba(79, 64, 28, 0.99);
  47. color: white;
  48. }
  49. /*********************************************
  50. * HEADERS
  51. *********************************************/
  52. .reveal h1,
  53. .reveal h2,
  54. .reveal h3,
  55. .reveal h4,
  56. .reveal h5,
  57. .reveal h6 {
  58. margin: 0 0 20px 0;
  59. color: #333;
  60. font-family: 'League Gothic', Impact, sans-serif;
  61. line-height: 0.9em;
  62. letter-spacing: 0.02em;
  63. text-transform: uppercase;
  64. }
  65. .reveal h1 {
  66. text-shadow: 0 1px 0 #ccc,
  67. 0 2px 0 #c9c9c9,
  68. 0 3px 0 #bbb,
  69. 0 4px 0 #b9b9b9,
  70. 0 5px 0 #aaa,
  71. 0 6px 1px rgba(0,0,0,.1),
  72. 0 0 5px rgba(0,0,0,.1),
  73. 0 1px 3px rgba(0,0,0,.3),
  74. 0 3px 5px rgba(0,0,0,.2),
  75. 0 5px 10px rgba(0,0,0,.25),
  76. 0 20px 20px rgba(0,0,0,.15);
  77. }
  78. /*********************************************
  79. * LINKS
  80. *********************************************/
  81. .reveal a:not(.image) {
  82. color: #8b743d;
  83. text-decoration: none;
  84. -webkit-transition: color .15s ease;
  85. -moz-transition: color .15s ease;
  86. -ms-transition: color .15s ease;
  87. -o-transition: color .15s ease;
  88. transition: color .15s ease;
  89. }
  90. .reveal a:not(.image):hover {
  91. text-shadow: none;
  92. border: none;
  93. border-radius: 2px;
  94. }
  95. .reveal .roll span:after {
  96. color: #fff;
  97. background: #8b743d;
  98. }
  99. /*********************************************
  100. * IMAGES
  101. *********************************************/
  102. .reveal section img {
  103. margin: 30px 0 0 0;
  104. background: rgba(255,255,255,0.12);
  105. border: 4px solid #eee;
  106. -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  107. -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  108. box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  109. -webkit-transition: all .2s linear;
  110. -moz-transition: all .2s linear;
  111. -ms-transition: all .2s linear;
  112. -o-transition: all .2s linear;
  113. transition: all .2s linear;
  114. }
  115. .reveal a:hover img {
  116. background: rgba(255,255,255,0.2);
  117. border-color: #8b743d;
  118. -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  119. -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  120. box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
  121. }
  122. /*********************************************
  123. * NAVIGATION CONTROLS
  124. *********************************************/
  125. .reveal .controls a {
  126. color: #fff;
  127. }
  128. .reveal .controls a.enabled {
  129. color: #8b743d;
  130. text-shadow: 0px 0px 2px hsla(185, 45%, 70%, 0.3);
  131. }
  132. /*********************************************
  133. * PROGRESS BAR
  134. *********************************************/
  135. .reveal .progress {
  136. background: rgba(0,0,0,0.2);
  137. }
  138. .reveal .progress span {
  139. background: #8b743d;
  140. -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
  141. -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
  142. -ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
  143. -o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
  144. transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
  145. }