lesson.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /* typography */
  2. h2 {
  3. font-size: 10px;
  4. letter-spacing: -1px;
  5. text-align: left;
  6. }
  7. p {
  8. font-size: 0.8em;
  9. margin:0px;
  10. }
  11. /* divs */
  12. #instructionPanel {
  13. position:absolute;
  14. top:0px;
  15. left:0px;
  16. width:20%;
  17. height:100%;
  18. background:#333;
  19. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  20. font-size: 13px;
  21. line-height: 18px;
  22. }
  23. .taskTitle {
  24. color:#CCCCCC;
  25. padding:5px;
  26. font-size:18px;
  27. /*font-weight:bold;*/
  28. /*text-align:center;*/
  29. }
  30. #lessonProgressBar {
  31. width:0px;
  32. }
  33. #navigation {
  34. text-align:center;
  35. margin:auto;
  36. }
  37. ul {
  38. position:relative;
  39. left:-15px;
  40. }
  41. .buttonLabel {
  42. color:white;
  43. font-weight:bold;
  44. }
  45. #message {
  46. display:none;
  47. padding-left:5px;
  48. padding-right:5px;
  49. vertical-align:middle;
  50. }
  51. #startButton {
  52. display:inline-block;
  53. padding-left:5px;
  54. padding-right:5px;
  55. vertical-align:middle;
  56. }
  57. #nextButton {
  58. display:none;
  59. padding-left:5px;
  60. padding-right:5px;
  61. vertical-align:middle;
  62. }
  63. #previousButton {
  64. display:none;
  65. padding-left:5px;
  66. padding-right:5px;
  67. vertical-align:middle;
  68. }
  69. #completeButton {
  70. display:none;
  71. padding-left:5px;
  72. padding-right:5px;
  73. vertical-align:middle;
  74. }
  75. label {
  76. font-size:13px;
  77. text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  78. }
  79. p {
  80. font-size: 0.8em;
  81. }
  82. /* FROM BOOTSTRAP CSS - FOR NAVIATION BUTTONS */
  83. .lesson .btn {
  84. display: inline-block;
  85. *display: inline;
  86. /* IE7 inline-block hack */
  87. *zoom: 1;
  88. padding: 4px 12px;
  89. margin-bottom: 0;
  90. font-size: 13px;
  91. line-height: 18px;
  92. *line-height: 18px;
  93. text-align: center;
  94. vertical-align: middle;
  95. cursor: pointer;
  96. color: #3a3f44;
  97. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  98. background-color: #f5f5f5;
  99. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  100. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  101. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  102. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  103. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  104. background-repeat: repeat-x;
  105. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  106. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  107. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  108. *background-color: #e6e6e6;
  109. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  110. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  111. border: 1px solid #cccccc;
  112. *border: 0;
  113. border-bottom-color: #b3b3b3;
  114. -webkit-border-radius: 4px;
  115. -moz-border-radius: 4px;
  116. border-radius: 4px;
  117. *margin-left: .3em;
  118. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  119. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  120. box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  121. }
  122. .lesson .btn:hover,
  123. .lesson .btn:active,
  124. .lesson .btn.active,
  125. .lesson .btn.disabled,
  126. .lesson .btn[disabled] {
  127. color: #3a3f44;
  128. background-color: #e6e6e6;
  129. *background-color: #d9d9d9;
  130. }
  131. .lesson .btn:active,
  132. .lesson .btn.active {
  133. background-color: #cccccc \9;
  134. }
  135. .lesson .btn:hover {
  136. color: #3a3f44;
  137. text-decoration: none;
  138. background-color: #e6e6e6;
  139. *background-color: #d9d9d9;
  140. /* Buttons in IE7 don't get borders, so darken on hover */
  141. background-position: 0 -15px;
  142. -webkit-transition: background-position 0.1s linear;
  143. -moz-transition: background-position 0.1s linear;
  144. -o-transition: background-position 0.1s linear;
  145. transition: background-position 0.1s linear;
  146. }
  147. .lesson .btn:focus {
  148. outline: thin dotted #333;
  149. outline: 5px auto -webkit-focus-ring-color;
  150. outline-offset: -2px;
  151. }
  152. .lesson .btn.active,
  153. .lesson .btn:active {
  154. background-color: #e6e6e6;
  155. background-color: #d9d9d9 \9;
  156. background-image: none;
  157. outline: 0;
  158. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  159. -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  160. box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  161. }
  162. .lesson .btn {
  163. border-color: #c5c5c5;
  164. border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
  165. }
  166. .lesson .btn-info {
  167. color: #ffffff;
  168. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  169. background-color: #49afcd;
  170. background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  171. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  172. background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  173. background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  174. background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  175. background-repeat: repeat-x;
  176. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  177. border-color: #2f96b4 #2f96b4 #1f6377;
  178. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  179. *background-color: #2f96b4;
  180. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  181. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  182. }
  183. .lesson .btn-info:hover,
  184. .lesson .btn-info:active,
  185. .lesson .btn-info.active,
  186. .lesson .btn-info.disabled,
  187. .lesson .btn-info[disabled] {
  188. color: #ffffff;
  189. background-color: #2f96b4;
  190. *background-color: #2a85a0;
  191. }
  192. .lesson .btn-info:active,
  193. .lesson .btn-info.active {
  194. background-color: #24748c \9;
  195. }
  196. /*!
  197. * jQuery UI CSS Framework 1.8.20
  198. *
  199. * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
  200. * Dual licensed under the MIT or GPL Version 2 licenses.
  201. * http://jquery.org/license
  202. *
  203. * http://docs.jquery.com/UI/Theming/API
  204. *
  205. * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,%20Arial,%20sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=444444&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=44&borderColorHeader=333333&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=000000&bgTextureContent=14_loop.png&bgImgOpacityContent=25&borderColorContent=555555&fcContent=ffffff&iconColorContent=cccccc&bgColorDefault=222222&bgTextureDefault=03_highlight_soft.png&bgImgOpacityDefault=35&borderColorDefault=444444&fcDefault=eeeeee&iconColorDefault=cccccc&bgColorHover=003147&bgTextureHover=03_highlight_soft.png&bgImgOpacityHover=33&borderColorHover=0b93d5&fcHover=ffffff&iconColorHover=ffffff&bgColorActive=0972a5&bgTextureActive=04_highlight_hard.png&bgImgOpacityActive=20&borderColorActive=26b3f7&fcActive=ffffff&iconColorActive=222222&bgColorHighlight=eeeeee&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=80&borderColorHighlight=cccccc&fcHighlight=2e7db2&iconColorHighlight=4b8e0b&bgColorError=ffc73d&bgTextureError=02_glass.png&bgImgOpacityError=40&borderColorError=ffb73d&fcError=111111&iconColorError=a83300&bgColorOverlay=5c5c5c&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=50&opacityOverlay=80&bgColorShadow=cccccc&bgTextureShadow=01_flat.png&bgImgOpacityShadow=30&opacityShadow=60&thicknessShadow=7px&offsetTopShadow=-7px&offsetLeftShadow=-7px&cornerRadiusShadow=8px
  206. */
  207. /* Component containers
  208. ----------------------------------*/
  209. .lesson .ui-widget { font-family: Verdana, Arial, sans-serif; font-size: 1.1em; }
  210. .lesson .ui-widget .ui-widget { font-size: 1em; }
  211. .lesson .ui-widget input, .lesson .ui-widget select, .lesson .ui-widget textarea, .lesson .ui-widget button { font-family: Verdana, Arial, sans-serif; font-size: 1em; }
  212. .lesson .ui-widget-content { border: 1px solid #555555; background: #000000 50% 50% repeat; color: #ffffff; }
  213. .lesson .ui-widget-content a { color: #ffffff; }
  214. .lesson .ui-widget-header { border: 1px solid #333333; background: #444444 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
  215. .lesson .ui-widget-header a { color: #ffffff; }
  216. /* Interaction states
  217. ----------------------------------*/
  218. .lesson .ui-state-default, .lesson .ui-widget-content .ui-state-default, .lesson .ui-widget-header .ui-state-default { border: 1px solid #444444; background: #222222 50% 50% repeat-x; font-weight: normal; color: #eeeeee; }
  219. .lesson .ui-state-default a, .lesson .ui-state-default a:link, .lesson .ui-state-default a:visited { color: #eeeeee; text-decoration: none; }
  220. .lesson .ui-state-hover, .lesson .ui-widget-content .ui-state-hover, .lesson .ui-widget-header .ui-state-hover, .lesson .ui-state-focus, .lesson .ui-widget-content .ui-state-focus, .lesson .ui-widget-header .ui-state-focus { border: 1px solid #0b93d5; background: #003147 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
  221. .lesson .ui-state-hover a, .lesson .ui-state-hover a:hover { color: #ffffff; text-decoration: none; }
  222. .lesson .ui-state-active, .lesson .ui-widget-content .ui-state-active, .lesson .ui-widget-header .ui-state-active { border: 1px solid #26b3f7; background: #0972a5 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
  223. .lesson .ui-state-active a, .lesson .ui-state-active a:link, .lesson .ui-state-active a:visited { color: #ffffff; text-decoration: none; }
  224. .lesson .ui-widget :active { outline: none; }
  225. /* Interaction Cues
  226. ----------------------------------*/
  227. .lesson .ui-state-highlight, .lesson .ui-widget-content .ui-state-highlight, .lesson .ui-widget-header .ui-state-highlight {border: 1px solid #cccccc; background: #eeeeee 50% top repeat-x; color: #2e7db2; }
  228. .lesson .ui-state-highlight a, .lesson .ui-widget-content .ui-state-highlight a,.lesson .ui-widget-header .ui-state-highlight a { color: #2e7db2; }
  229. .lesson .ui-state-error, .lesson .ui-widget-content .ui-state-error, .lesson .ui-widget-header .ui-state-error {border: 1px solid #ffb73d; background: #ffc73d 50% 50% repeat-x; color: #111111; }
  230. .lesson .ui-state-error a, .lesson .ui-widget-content .ui-state-error a, .lesson .ui-widget-header .ui-state-error a { color: #111111; }
  231. .lesson .ui-state-error-text, .lesson .ui-widget-content .ui-state-error-text, .lesson .ui-widget-header .ui-state-error-text { color: #111111; }
  232. .lesson .ui-priority-primary, .lesson .ui-widget-content .ui-priority-primary, .lesson .ui-widget-header .ui-priority-primary { font-weight: bold; }
  233. .lesson .ui-priority-secondary, .lesson .ui-widget-content .ui-priority-secondary, .lesson .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
  234. .lesson .ui-state-disabled, .lesson .ui-widget-content .ui-state-disabled, .lesson .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
  235. /* Icons
  236. ----------------------------------*/
  237. .lesson .ui-icon { width: 16px; height: 16px;}
  238. .lesson .ui-widget-content .ui-icon {background-image: none; }
  239. .lesson .ui-widget-header .ui-icon {background-image: none; }
  240. .lesson .ui-state-default .ui-icon { background-image: none; }
  241. .lesson .ui-state-hover .ui-icon, .lesson .ui-state-focus .ui-icon {background-image: none; }
  242. .lesson .ui-state-active .ui-icon {background-image: none; }
  243. .lesson .ui-state-highlight .ui-icon {background-image: none; }
  244. .lesson .ui-state-error .ui-icon, .lesson .ui-state-error-text .ui-icon {background-image: none; }
  245. /*!
  246. * jQuery UI Accordion 1.8.20
  247. *
  248. * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
  249. * Dual licensed under the MIT or GPL Version 2 licenses.
  250. * http://jquery.org/license
  251. *
  252. * http://docs.jquery.com/UI/Accordion#theming
  253. */
  254. /* IE/Win - Fix animation bug - #4615 */
  255. .lesson .ui-accordion { width: 100%; }
  256. .lesson .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
  257. .lesson .ui-accordion .ui-accordion-li-fix { display: inline; }
  258. .lesson .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
  259. .lesson .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
  260. .lesson .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
  261. .lesson .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
  262. .lesson .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
  263. .lesson .ui-accordion .ui-accordion-content-active { display: block; }