helios.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842
  1. body {
  2. font-size: 11px;
  3. font-family: "Lucida Grande", helvetica, arial, sans;
  4. background: #ddd;
  5. }
  6. .clearfix:after {
  7. content: ".";
  8. display: block;
  9. clear: both;
  10. visibility: hidden;
  11. line-height: 0;
  12. height: 0;
  13. }
  14. .clearfix {
  15. display: inline-block;
  16. }
  17. html[xmlns] .clearfix {
  18. display: block;
  19. }
  20. * html .clearfix {
  21. height: 1%;
  22. }
  23. a {
  24. cursor: pointer;
  25. }
  26. i {
  27. opacity: 0.8;
  28. }
  29. [class^="icon-"], [class*=" icon-"] {
  30. margin-top: 0;
  31. }
  32. .CodeMirror {
  33. position: absolute;
  34. overflow: hidden;
  35. height: 100%;
  36. width: 100%;
  37. background: #fff;
  38. }
  39. .CodeMirror-hints {
  40. border-radius: 0;
  41. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  42. font-size: 11px;
  43. line-height: 1em;
  44. padding: 0;
  45. max-height: 120px;
  46. }
  47. .CodeMirror-hint {
  48. border-radius: 0;
  49. padding: 0 10px;
  50. }
  51. .CodeMirror pre {
  52. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  53. line-height: 16px;
  54. }
  55. .CodeMirror-gutter.stops {
  56. width: 20px;
  57. }
  58. .CodeMirror .CodeMirror-gutter-elt {
  59. line-height: 1.5em;
  60. }
  61. .CodeMirror .highlighted.CodeMirror-linebackground {
  62. background-color: #ffffaa;
  63. }
  64. .CodeMirror .CodeMirror-gutter-elt .stop {
  65. width: 16px;
  66. height: 16px;
  67. background: url('../images/step.gif');
  68. margin-left: 2px;
  69. }
  70. .state {
  71. position: absolute;
  72. right: 15px;
  73. top: 10px;
  74. width: 16px;
  75. height: 16px;
  76. }
  77. .state.modified {
  78. background: transparent url('../images/modified.png') 50% 50% no-repeat;
  79. }
  80. .buttons_bar {
  81. position: absolute;
  82. bottom: 8px;
  83. right: 20px;
  84. z-index: 2;
  85. }
  86. .btn, .btn-group > .btn, .btn-group > .dropdown-menu {
  87. padding: 2px 8px;
  88. }
  89. .navbar-fixed-top {
  90. font-size: 11px;
  91. line-height: 16px;
  92. box-shadow: 0 0 1px #333;
  93. }
  94. .navbar-fixed-top a span {
  95. padding-left: 18px;
  96. background-position: center left;
  97. background-repeat: no-repeat;
  98. background-position: 0px -1px;
  99. }
  100. .navbar-fixed-top i.close {
  101. width: 14px;
  102. height: 16px;
  103. margin-left: 4px;
  104. background-image: url('../images/close.gif');
  105. margin-right: 0;
  106. background-position: center left;
  107. margin-top: 2px;
  108. }
  109. .navbar-fixed-top a span.references {
  110. background-image: url('../images/references.png')
  111. }
  112. .navbar-fixed-top a span.browser {
  113. background-image: url('../images/browser.png')
  114. }
  115. .navbar-fixed-top a span.sunit {
  116. background-image: url('../images/sunit.png')
  117. }
  118. .navbar-fixed-top a span.workspace {
  119. background-image: url('../images/workspace.png')
  120. }
  121. .navbar-fixed-top a span.debugger {
  122. background-image: url('../images/debugger.png')
  123. }
  124. .navbar-fixed-top a span.inspector {
  125. background-image: url('../images/inspector.png')
  126. }
  127. .navbar-fixed-top .navbar-inner {
  128. min-height: 20px;
  129. background-color: #dbdbdb;
  130. border-bottom: 1px solid #666;
  131. background-image: linear-gradient(top, #dbdbdb, #bababa);
  132. background-image: -webkit-linear-gradient(top, #dbdbdb, #bababa);
  133. background-image: -moz-linear-gradient(top, #dbdbdb, #bababa);
  134. background-image: -owebkit-linear-gradient(top, #dbdbdb, #bababa);
  135. box-shadow: 0 0 0;
  136. }
  137. .navbar .nav > li {
  138. line-height: 16px;
  139. }
  140. .navbar .nav > li > a {
  141. line-height: 22px;
  142. padding: 0px 8px;
  143. font-size: 11px;
  144. color: #111;
  145. text-shadow: 0 1px 0 #ddd;
  146. }
  147. .nav > li > a:hover {
  148. background: transparent;
  149. }
  150. .navbar .nav > .active > a,
  151. .navbar .nav > .active > a:hover,
  152. .navbar .nav > .active > a:focus {
  153. background-color: #bababa;
  154. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  155. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  156. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  157. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  158. text-shadow: #ddd 0px 1px 0px;
  159. color: #222;
  160. }
  161. .navbar-fixed-top i {
  162. opacity: 0.4;
  163. margin-right: 5px;
  164. height: 12px;
  165. margin-top: 0;
  166. }
  167. .navbar-fixed-top .active i {
  168. opacity: 0.6;
  169. }
  170. .nav-pills.nav-stacked > li > a {
  171. border-radius: 0;
  172. -webkit-border-radius: 0;
  173. -moz-border-radius: 0;
  174. padding: 2px 2px 1px 4px;
  175. margin: 0;
  176. font-size: 11px;
  177. color: #111;
  178. white-space: nowrap;
  179. }
  180. [class^="icon-"], [class*=" icon-"] {
  181. margin-right: 2px;
  182. }
  183. .dropdown-menu {
  184. border-radius: 0;
  185. padding: 0;
  186. margin: 3px;
  187. }
  188. .nav-pills > .active > a {
  189. background-color: #ddd;
  190. background-image: linear-gradient(top, #ddd, #bababa);
  191. background-image: -moz-linear-gradient(top, #ddd, #bababa);
  192. background-image: -webkit-linear-gradient(top, #ddd, #bababa);
  193. background-image: -o-linear-gradient(top, #ddd, #bababa);
  194. color: #fff;
  195. text-shadow: 0 0 0;
  196. }
  197. .focused .nav-pills {
  198. background-color: #e3e7eb;
  199. }
  200. .focused .nav-pills > .active > a,
  201. .nav-pills > .active > a:hover,
  202. .dropdown-menu li > a:hover,
  203. .dropdown-menu li > a:focus,
  204. .dropdown-submenu:hover > a,
  205. .dropdown-menu .active > a,
  206. .dropdown-menu .active > a:hover,
  207. .CodeMirror-hint-active {
  208. background: #b1bdd5;
  209. background-image: linear-gradient(top, #b1bdd5, #8999b8);
  210. background-image: -webkit-linear-gradient(top, #b1bdd5, #8999b8);
  211. background-image: -moz-linear-gradient(top, #b1bdd5, #8999b8);
  212. background-image: -owebkit-linear-gradient(top, #b1bdd5, #8999b8);
  213. color: #fff;
  214. text-shadow: 0 0 0;
  215. }
  216. .tool_container {
  217. position: absolute;
  218. top: 23px;
  219. bottom: 0;
  220. left: 0;
  221. right: 0;
  222. }
  223. .transcript textarea {
  224. width: 100%;
  225. height: 100%;
  226. margin: 0;
  227. padding: 0;
  228. border: 0;
  229. }
  230. .tool_container .panes {
  231. position: relative;
  232. height: 100%;
  233. width: 100%;
  234. overflow: hidden;
  235. }
  236. .tool_container .panes .pane {
  237. position: absolute;
  238. overflow: auto;
  239. top: 0;
  240. left: 0;
  241. right: 0;
  242. bottom: 0;
  243. background: #fefefe;
  244. }
  245. .tool_container .multi_pane {
  246. position: relative;
  247. height: 100%;
  248. width: auto;
  249. overflow-x: auto;
  250. }
  251. .tool_container .multi_pane .pane {
  252. height: 100%;
  253. max-width: 300px;
  254. border-right: 1px solid #888;
  255. }
  256. .tool_container .panes .pane > div {
  257. height: 100%;
  258. position: relative;
  259. }
  260. .tool_container .panes.horizontal > .pane {
  261. min-height: 50px;
  262. }
  263. .tool_container .panes.horizontal > .pane {
  264. top: 50%;
  265. }
  266. .tool_container .panes.horizontal > .pane:first-child {
  267. top: 0;
  268. bottom: 50%;
  269. }
  270. .tool_container .panes.vertical > .pane {
  271. left: 50%;
  272. }
  273. .tool_container .panes.vertical > .pane:first-child {
  274. left: 0;
  275. right: 50%;
  276. }
  277. .tool_container .splitter {
  278. position: absolute;
  279. border-width: 0;
  280. z-index: 10;
  281. }
  282. .tool_container .splitter.vertical {
  283. width: 5px;
  284. left: 50%;
  285. margin-left: -1px;
  286. border-left: 1px solid #888;
  287. height: 100%;
  288. float: left;
  289. cursor: ew-resize;
  290. }
  291. .tool_container .splitter.horizontal {
  292. top: 50%;
  293. height: 5px;
  294. margin-top: -1px;
  295. width: 100%;
  296. border-top: 1px solid #888;
  297. cursor: ns-resize;
  298. }
  299. .tool_container .panes .pane .nav-pills {
  300. position: absolute;
  301. overflow-y: auto;
  302. top: 17px;
  303. bottom: 17px;
  304. width: 100%;
  305. margin: 0;
  306. }
  307. .tool_container .pane .nav-pills i {
  308. display: inline-block;
  309. width: 16px;
  310. height: 16px;
  311. margin-right: 4px;
  312. background-image: none;
  313. background-position: top left;
  314. line-height: 14px;
  315. vertical-align: text-top;
  316. }
  317. .tool_container .pane .nav-pills i.class {
  318. background-image: url('../images/class.png');
  319. }
  320. .tool_container .pane .nav-pills i.collection {
  321. background-image: url('../images/collection.png');
  322. }
  323. .tool_container .pane .nav-pills i.test {
  324. background-image: url('../images/test.png');
  325. }
  326. .tool_container .pane .nav-pills i.exception {
  327. background-image: url('../images/exception.png');
  328. }
  329. .tool_container .pane .nav-pills i.widget {
  330. background-image: url('../images/widget.png');
  331. }
  332. .tool_container .pane .nav-pills i.magnitude {
  333. background-image: url('../images/magnitude.png');
  334. }
  335. .tool_container .pane .nav-pills i.package {
  336. background-image: url('../images/package.png');
  337. }
  338. /* .tool_container .pane .nav-pills i.public { */
  339. /* background-image: url('../images/public.gif'); */
  340. /* } */
  341. .tool_container .pane .nav-pills i.private {
  342. background-image: url('../images/private.gif');
  343. }
  344. .tool_container .pane .nav-pills i.extension {
  345. background-image: url('../images/extension.png');
  346. }
  347. .tool_container .pane .nav-pills i.default {
  348. background-image: url('../images/default.gif');
  349. }
  350. .tool_container .pane .nav-pills i.package {
  351. background-image: url('../images/package.png');
  352. }
  353. .tool_container .pane .nav-pills i.override {
  354. background-image: url('../images/override.gif');
  355. }
  356. .tool_container .pane .nav-pills i.overridden {
  357. background-image: url('../images/overridden.gif');
  358. }
  359. .tool_container .pane .nav-pills i.override-overridden {
  360. background-image: url('../images/override-overridden.gif');
  361. }
  362. .tool_container .pane .nav-pills i.warning {
  363. background-image: url('../images/warning.gif');
  364. }
  365. .tool_container .pane .nav-pills i.uncommented {
  366. background-image: url('../images/uncommented.png');
  367. }
  368. .tool_container .list-label {
  369. font-size: 11px;
  370. border-radius: 0;
  371. border-bottom: 1px solid #666;
  372. background-color: #e9eaf5;
  373. background-image: -webkit-linear-gradient(top, #e9eaf5, #bfc2d2);
  374. color: #222;
  375. font-weight: bold;
  376. text-shadow: 0 0 0;
  377. padding-left: 4px;
  378. line-height: 16px;
  379. text-shadow: 0 1px 0 #eee;
  380. }
  381. .tool_container .list-label .btn-group.cog {
  382. position: absolute;
  383. top: 0;
  384. right: 0;
  385. padding: 0;
  386. margin: 0;
  387. }
  388. .tool_container .list-label .btn-group.open .dropdown-toggle {
  389. box-shadow: 0 0 0;
  390. border: 0;
  391. }
  392. .tool_container .list-label .btn-group > .dropdown-menu {
  393. padding: 0;
  394. font-size: 11px;
  395. }
  396. .tool_container .list-label .btn-group.cog i {
  397. margin-top: 1px;
  398. }
  399. .tool_container .list-label .cog .btn.dropdown-toggle {
  400. padding: 0;
  401. margin: 0;
  402. line-height: 12px;
  403. border: 0;
  404. background: transparent;
  405. }
  406. .tool_container .panes .pane .pane_actions {
  407. position: absolute;
  408. overflow: hidden;
  409. width: 100%;
  410. height: 16px;
  411. bottom: 0;
  412. background: #dadada;
  413. border-top: 1px solid #666;
  414. padding: 0;
  415. margin: 0;
  416. background-image: -webkit-linear-gradient(top, #dadada, #bdbdbd);
  417. }
  418. .tool_container .panes .pane .pane_actions .info {
  419. padding: 10px 5px 5px;
  420. font-weight: bold;
  421. color: #666;
  422. line-height: 20px;
  423. }
  424. .tool_container .panes .pane .pane_actions .btn-group {
  425. display: inline;
  426. margin-left: 5px;
  427. }
  428. .tool_container .panes .pane .pane_actions label {
  429. display: inline-block;
  430. padding-left: 30px;
  431. font-size: 11px;
  432. line-height: 16px;
  433. vertical-align: top;
  434. text-shadow: #ddd 0px 1px 0px;
  435. color: #222;
  436. }
  437. .tool_container .panes .pane .pane_actions label input {
  438. float: none;
  439. vertical-align: top;
  440. margin-top: 2px;
  441. margin-right: 5px;
  442. }
  443. .tool_container .panes .pane .pane_actions .btn {
  444. background: transparent;
  445. border: 0;
  446. font-size: 11px;
  447. line-height: 16px;
  448. padding: 0 5px;
  449. margin: 0;
  450. border-radius: 0;
  451. box-shadow: 0 0 0;
  452. vertical-align: top;
  453. /* min-width: 50px; */
  454. }
  455. .tool_container .panes .pane .pane_actions .btn:hover {
  456. background-color: #bbb;
  457. }
  458. .tool_container .panes .pane .pane_actions .btn-group .btn:hover {
  459. background-color: transparent;
  460. }
  461. .tool_container .panes .pane .pane_actions .btn-group .btn.active {
  462. text-shadow: #ddd 0px 1px 0px;
  463. color: #222;
  464. background: #bbb;
  465. background-image: linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  466. background-image: -webkit-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -webkit-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  467. background-image: -moz-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -moz-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  468. background-image: -o-linear-gradient(left, #777 0%, #bababa 2px, transparent 2px), -o-linear-gradient(right, #777 0%, #bababa 2px, transparent 2px);
  469. }
  470. .tool_container .panes .pane .class_side .nav-pills {
  471. font-weight: bold;
  472. background: #ffd;
  473. }
  474. .key_helper {
  475. z-index: 20;
  476. position: fixed;
  477. bottom: 0px;
  478. background: #fff;
  479. background-image: linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  480. background-image: -moz-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  481. background-image: -o-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  482. background-image: -webkit-linear-gradient(top, #fafafa, #f0f0f0 50%, #e1e1e1 51%);
  483. width: 100%;
  484. border-top: 1px solid #aaa;
  485. font-size: 11px;
  486. height: 22px;
  487. }
  488. .key_helper .command {
  489. padding: 0 2px;
  490. }
  491. .key_helper .label {
  492. padding: 1px 4px;
  493. font-family: Menlo, Monaco, "Lucida Console", Courier, monospace;
  494. background: transparent;
  495. color: #08C;
  496. text-shadow: none;
  497. border: 0 none;
  498. }
  499. .key_helper .action {
  500. padding: 0 5px;
  501. color: #666;
  502. }
  503. .key_helper .selected {
  504. background-image: linear-gradient(top, #ccc, #aaa);
  505. background-image: -moz-linear-gradient(top, #ccc, #aaa);
  506. background-image: -o-linear-gradient(top, #ccc, #aaa);
  507. background-image: -webkit-linear-gradient(top, #ccc, #aaa);
  508. height: 30px;
  509. padding: 0 8px;
  510. color: #333;
  511. font-weight: bold;
  512. text-shadow: 0 1px 0 #fff;
  513. display: inline-block;
  514. border-right: 1px solid #aaa;
  515. }
  516. .key_helper .close {
  517. font-size: 14px;
  518. line-height: 26px;
  519. opacity: 0.6;
  520. }
  521. .key_helper .close:hover {
  522. opacity: 0.8;
  523. }
  524. .key_helper input {
  525. outline: none;
  526. font-size: 11px;
  527. padding: 2px 8px;
  528. background: #fff;
  529. border: 1px solid #a1a1a1;
  530. border-radius: 12px;
  531. box-shadow: inset 0 0px 2px 0px #aaa;
  532. margin: 2px 4px;
  533. line-height: 1em;
  534. }
  535. .key_helper .error .help-inline,
  536. .key_helper .error input {
  537. color: #B91010;
  538. font-weight: bold;
  539. }
  540. .typeahead.dropdown-menu {
  541. position: fixed !important;
  542. top: auto !important;
  543. bottom: 30px !important;
  544. }
  545. #cog-helper {
  546. position: fixed;
  547. bottom: 2px;
  548. right: 2px;
  549. z-index: 1000;
  550. opacity: 0.6;
  551. transition: all .5s;
  552. -webkit-transition: all .5s;
  553. -moz-transition: all .5s;
  554. -o-transition: all .5s;
  555. -ms-transition: all .5s;
  556. }
  557. #cog-helper:hover {
  558. opacity: 1;
  559. }
  560. #helper {
  561. z-index: 300;
  562. top: 50%;
  563. position: absolute;
  564. left: 50%;
  565. margin-left: -220px;
  566. margin-top: -35px;
  567. width: 400px;
  568. text-align: center;
  569. color: #ddd;
  570. font-size: 18px;
  571. font-weight: bold;
  572. text-shadow: 0 -1px 0 #111;
  573. padding: 20px;
  574. background: rgba(0,0,0, 0.6);
  575. border-radius: 40px;
  576. }
  577. #overlay {
  578. z-index: 2000;
  579. background: transparent;
  580. position: fixed;
  581. top: 0;
  582. left: 0;
  583. right: 0;
  584. bottom: 0;
  585. }
  586. .confirmation, .dialog {
  587. z-index: 2001;
  588. background: rgba(243,243,243,0.9);
  589. background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  590. background-image: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  591. background-image: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  592. background-image: linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 5px, transparent 6px);
  593. padding: 20px;
  594. width: 250px;
  595. position: fixed;
  596. top: -500px;
  597. left: 50%;
  598. margin-left: -135px;
  599. box-shadow: 0 0 6px #333;
  600. transition: top .5s;
  601. -webkit-transition: top .5s;
  602. -moz-transition: top .5s;
  603. -o-transition: top .5s;
  604. }
  605. .confirmation.large,
  606. .dialog.large {
  607. width: 400px;
  608. margin-left: -220px;
  609. }
  610. .confirmation textarea,
  611. .dialog textarea {
  612. display: block;
  613. width: 235px;
  614. }
  615. .confirmation.large textarea,
  616. .dialog.large textarea {
  617. width: 385px;
  618. height: 200px;
  619. }
  620. .confirmation span,
  621. .dialog span {
  622. font-size: 13px;
  623. font-weight: bold;
  624. }
  625. .confirmation .buttons,
  626. .dialog .buttons {
  627. text-align: right;
  628. margin-top: 20px;
  629. }
  630. .confirmation.active,
  631. .dialog.active {
  632. top: 0;
  633. }
  634. .button {
  635. border-radius: 3px !important;
  636. background: #ccc;
  637. border: 1px solid #9B9B9B;
  638. height: 20px;
  639. border-radius: 5px;
  640. min-width: 68px;
  641. padding: 0 10px;
  642. text-align: center;
  643. margin: 0;
  644. margin-left: 10px;
  645. background: -webkit-linear-gradient(bottom, rgba(0,0,0,.09) 0%, rgba(0,0,0, 0.02) 50%, rgba(0,0,0,.04) 50.5%, rgba(0,0,0,.04) 100%) #fff;
  646. font: 13px "Lucida Grande", Lucida, Verdana, sans-serif;
  647. }
  648. .button.default {
  649. border-top: 1px solid #535273;
  650. border: 1px solid #4F4D67;
  651. border-bottom: 1px solid #4B4B58;
  652. background: -webkit-linear-gradient(bottom, rgba(255,255,255,.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255,255,255,.3) 50.5%, rgba(255,255,255,.45) 95%, rgba(255,255,255,.8) 100%) #b1bdd5;
  653. background: -moz-linear-gradient(bottom, rgba(255,255,255,.5) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255,255,255,.3) 50.5%, rgba(255,255,255,.45) 95%, rgba(255,255,255,.8) 100%) #b1bdd5;
  654. -moz-box-shadow: 0 0 3px rgba(69, 113, 184, 0.8);
  655. -webkit-box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  656. box-shadow: 0 0 5px rgba(69, 113, 184, 0.44);
  657. }
  658. .button:hover {
  659. cursor: pointer;
  660. border: 1px solid rgba(0,0,0,.6);
  661. }
  662. .button:active {
  663. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  664. -moz-box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  665. box-shadow: inset 0 0 5px rgba(0,0,0,.5);
  666. }
  667. .button:focus {
  668. outline: 0;
  669. }
  670. .doc {
  671. background: white;
  672. }
  673. .doc code .doc pre {
  674. font-size: 11px;
  675. }
  676. .doc code {
  677. padding: 1px 4px;
  678. }
  679. .doc .head {
  680. background: #08C;
  681. padding: 10px;
  682. font-size: 22px;
  683. color: white;
  684. }
  685. .doc .button {
  686. float: right;
  687. }
  688. .doc .markdown,
  689. .doc .inheritance {
  690. padding: 10px;
  691. }
  692. .doc h1 {
  693. font-size: 22px;
  694. margin: 0 10px;
  695. border-bottom: 1px solid #666;
  696. }
  697. .doc h2 {
  698. font-size: 16px;
  699. }
  700. .transcript_container .list-label {
  701. height: 16px;
  702. position: absolute;
  703. top: 0;
  704. right: 0;
  705. left: 0;
  706. }
  707. .transcript {
  708. position: absolute;
  709. top: 17px;
  710. bottom: 0;
  711. left: 0;
  712. right: 0;
  713. }
  714. .transcript textarea {
  715. width: 100%;
  716. height: 100%;
  717. margin: 0;
  718. padding: 0;
  719. border: 0;
  720. }