ace_api.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. /*
  2. Generic "affects everything" stuff
  3. */
  4. #wrapper .content .column2 {
  5. float: none;
  6. }
  7. #documentation ul {
  8. font-size: 13px;
  9. }
  10. #documentation li {
  11. color: black;
  12. }
  13. pre {
  14. background-color: #FFFFFF;
  15. }
  16. code {
  17. font-size: 12px;
  18. line-height: 16px;
  19. font-family: 'Ubuntu Mono',Monaco,Consolas,monospace !important;
  20. background-color: #F9F9F9;
  21. border-radius: 3px 3px 3px 3px;
  22. display: inline-block;
  23. padding: 0 4px;
  24. margin: 2px 1px;
  25. color: inherit;
  26. }
  27. #documentation pre {
  28. margin-top: 10px;
  29. border-radius: none;
  30. box-shadow: none;
  31. background : white;
  32. /*background : #f5f5f5;
  33. border: 0;*/
  34. -webkit-border-radius: 6px 6px 0 0;
  35. -moz-border-radius: 6px 6px 0 0;
  36. border-radius: 6px 6px 0 0;
  37. padding: 5px;
  38. }
  39. .method pre, .event pre, .property pre {
  40. background : white;
  41. }
  42. #documentation pre code {
  43. background-color: transparent;
  44. border-radius: none;
  45. box-shadow: none;
  46. }
  47. #documentation a code {
  48. color: #00438a;
  49. }
  50. #documentation h2 {
  51. font-size: 26px;
  52. }
  53. #documentation p {
  54. font-size: 13px;
  55. }
  56. #documentation li p:last-child {
  57. margin-bottom : 5px;
  58. }
  59. #documentation blockquote p{
  60. font-size: 14px;
  61. font-weight: 500;
  62. line-height: 23px;
  63. font-style: italic;
  64. }
  65. .alert-message{
  66. margin-bottom : 13px;
  67. }
  68. /*
  69. Header and shoulders
  70. */
  71. .navbar .nav > li {
  72. float:none;
  73. display:inline-block;
  74. *display:inline; /* ie7 fix */
  75. zoom:1; /* hasLayout ie7 trigger */
  76. }
  77. .navbar .nav > li > a {
  78. padding: 10px 15px 11px;
  79. }
  80. .navbar {
  81. text-align:center;
  82. }
  83. #topSection {
  84. width: 1000px;
  85. }
  86. .small_win #topSection {
  87. width: 100%;
  88. }
  89. .small_win #topSection .dropdown {
  90. margin-right: 40%;
  91. }
  92. .navbar .brand {
  93. margin-left: 0px;
  94. }
  95. .brand {
  96. background: transparent url(../images/ace_logo_menu.png) no-repeat 33px 5px;
  97. width: 80px;
  98. outline: none;
  99. height: 40px;
  100. padding: 0 10px !important;
  101. border: none;
  102. }
  103. .brand.dropdown-toggle:after {
  104. content: none;
  105. display: block;
  106. height: 40px;
  107. border: none;
  108. }
  109. .ace_logo {
  110. position: absolute;
  111. top: 45px;
  112. z-index: 20000;
  113. left: 210px;
  114. }
  115. .headerTitle {
  116. position: relative;
  117. top: 100px;
  118. left: 250px;
  119. }
  120. /*
  121. Menu venue
  122. */
  123. h3.api_title {
  124. padding-top: 10px;
  125. }
  126. ul.menu {
  127. margin-left: 2px;
  128. }
  129. .menu li {
  130. list-style-image: url(../images/menu_disc.png);
  131. margin-bottom: 4px;
  132. font-weight: 700;
  133. padding-left: 10px;
  134. margin-left: 0;
  135. }
  136. .menu li .menu-item a.menuLink, .menu li .menu-item span.menuLink {
  137. color: #3E7096;
  138. font-weight: 100;
  139. }
  140. .menuTwo {
  141. margin-bottom: 5px;
  142. margin-top: 2px;
  143. }
  144. .menuTwo li .menu-item a.menuLink {
  145. color: #3E7096;
  146. font-weight: 100;
  147. }
  148. /* need specificity to "beat" the above colors */
  149. .menu li .menu-item a.currentItem, .menuTwo li .menu-item {
  150. color: #0072bc;
  151. }
  152. /*
  153. Members and the tabs that represent them
  154. */
  155. .srolled .members {
  156. width: 100%;
  157. /* -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35);
  158. -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35);
  159. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); */
  160. padding-bottom: 15px;
  161. /* height: 31px;*/
  162. position: fixed;
  163. }
  164. .shadow.members{
  165. background: #edf8fd;
  166. box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3);
  167. -moz-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3);
  168. -o-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3);
  169. -webkit-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3);
  170. }
  171. .membersContent {
  172. /* border-bottom: 0.1em solid #FFF;*/
  173. height: 3em;
  174. padding-top: 4px;
  175. /* line-height: 4;*/
  176. /* margin-top: -0.1em;*/
  177. position: relative;
  178. /* transition-property: border-color, line-height;
  179. transition-duration: 125ms, 250ms;
  180. transition-timing-function: ease-out, ease-out;
  181. -moz-transition-property: border-color, line-height;
  182. -moz-transition-duration: 125ms, 250ms;
  183. -moz-transition-timing-function: ease-out, ease-out;
  184. -o-transition-property: border-color, line-height;
  185. -o-transition-duration: 125ms, 250ms;
  186. -o-transition-timing-function: ease-out, ease-out;
  187. -webkit-transition-property: border-color, line-height;
  188. -webkit-transition-duration: 125ms, 250ms;
  189. -webkit-transition-timing-function: ease-out, ease-out;*/
  190. /*transition-duration: 125ms;
  191. transition-property: top;
  192. transition-timing-function: ease-out;
  193. top : 11px;*/
  194. z-index: 103;
  195. padding-right: 10px;
  196. margin-right: -5px;
  197. /*width: 700px;*/
  198. }
  199. .srolledHeader .membersContent {
  200. line-height: 3;
  201. }
  202. .srolled .membersContent {
  203. /*top : 0;*/
  204. width: 625px;
  205. padding-left: 327px;
  206. margin : 0 auto 0 auto;
  207. }
  208. .srolled ul.nav {
  209. padding-right: 10px;
  210. }
  211. .membersBackground {
  212. /* background-color: white;
  213. position: fixed;
  214. z-index: 2;
  215. top: 40px;
  216. left: 0px;
  217. right: 0px;
  218. width: 100%;
  219. height: 55px;
  220. opacity: 0;
  221. display: none;
  222. box-shadow: rgba(0, 0, 0, 0.398438) 1px 4px 6px;*/
  223. background-color: transparent;
  224. height: 47px;
  225. /*width: 700px;*/
  226. position: absolute;
  227. }
  228. .srolled .membersBackground {
  229. position: relative;
  230. }
  231. .srolledHeader .membersBackground {
  232. /* display: block;*/
  233. }
  234. .memberHeader {
  235. float: left;
  236. padding-right: 10px;
  237. margin-bottom: 5px;
  238. position: absolute;
  239. padding-top: 4px;
  240. }
  241. ul.tabs li:first-child ul{
  242. left: -63px;
  243. }
  244. .tabs a.menu:after, .tabs .dropdown-toggle:after {
  245. margin-top: 22px;
  246. }
  247. .nav .dropdown-toggle .caret {
  248. margin-top: 12px;
  249. border-top-color: #6D8CA0;
  250. border-bottom-color: #6D8CA0;
  251. }
  252. li.dropdown {
  253. color: #2D2D2D;
  254. font-weight: bold;
  255. }
  256. .editInC9 {
  257. font-size: 11px;
  258. color: #657383;
  259. }
  260. .editInC9 a {
  261. color: #657383;
  262. font-weight: normal;
  263. position : relative;
  264. top : -2px;
  265. }
  266. .tabs {
  267. padding-top: 14px;
  268. /*border-bottom: 1px solid #848484;*/
  269. min-height : 27px;
  270. padding-bottom : 5px;
  271. }
  272. .tabsSansBorder {
  273. border: 0;
  274. }
  275. .tabs, .pills {
  276. margin-bottom: 0;
  277. }
  278. .srolledHeader .members .tabs {
  279. background-color: white;
  280. }
  281. li.dropdown {
  282. color: #2D2D2D;
  283. font-weight: bold;
  284. }
  285. .members .tabs .dropdown a,
  286. .members .tabs a.menu:after,
  287. .members .tabs .dropdown-toggle:after {
  288. margin-right: 0;
  289. margin-left: 6px;
  290. }
  291. .memberLink a {
  292. margin-left: 0 !important;
  293. }
  294. .menu-dropdown {
  295. min-width : 105px;
  296. max-height: 350px;
  297. overflow: auto;
  298. border-color : rgba(0, 0, 0, 0.1);
  299. }
  300. .topbar div > ul .menu-dropdown li a:hover,
  301. .nav .menu-dropdown li a:hover,
  302. .topbar div > ul .dropdown-menu li a:hover,
  303. .nav .dropdown-menu li a:hover {
  304. background-color: #ffffff;
  305. color: #000000;
  306. }
  307. .tabs a.menu:after, .tabs .dropdown-toggle:after {
  308. margin-top: 13px;
  309. line-height: 28px;
  310. }
  311. .open .menu, .dropdown.open .menu, .open .dropdown-toggle, .dropdown.open .dropdown-toggle {
  312. background: transparent;
  313. color: black;
  314. /* font-weight: bold;*/
  315. }
  316. #topSection .open .menu, #topSection .dropdown.open .menu, #topSection .open .dropdown-toggle,
  317. #topSection .dropdown.open .dropdown-toggle {
  318. color: #bfbfbf;
  319. }
  320. .tabs > li {
  321. font-weight: bold;
  322. }
  323. .tabs > li > a {
  324. border: none;
  325. outline: none;
  326. line-height: 28px;
  327. font-size: 11px;
  328. padding: 0 5px;
  329. }
  330. .tabs > li > a:hover {
  331. color: #000000;
  332. text-decoration: none;
  333. background-color: transparent;
  334. border: none;
  335. }
  336. .tabs > li, .pills > li {
  337. float: right;
  338. }
  339. .topbar .dropdown-menu a, .dropdown-menu a {
  340. font-size: 11px;
  341. /* padding: 2px 12px;*/
  342. line-height: 14px;
  343. }
  344. .tabs .active > a, .tabs .active > a:hover {
  345. color: #000000;
  346. border: none;
  347. cursor: default;
  348. }
  349. .tabs .menu-dropdown, .tabs .dropdown-menu {
  350. border-radius: 0 0 6px 6px;
  351. left: 10px;
  352. width: 160px;
  353. }
  354. .srolled .tabs .menu-dropdown, .srolled .tabs .dropdown-menu {
  355. top: 32px;
  356. }
  357. .dropdown-toggle {
  358. color: #6D8CA0;
  359. }
  360. ul.tabs .double ul, ul.tabs .triple ul, ul.tabs .quad ul{
  361. width:760px;
  362. margin-bottom:20px;
  363. overflow:hidden;
  364. border-top:1px solid #ccc;
  365. }
  366. /*ul.tabs .double li, ul.tabs .triple li, ul.tabs .quad li{
  367. line-height:1.5em;
  368. border-bottom:1px solid #ccc;
  369. float:left;
  370. display:inline;
  371. }*/
  372. /*
  373. Center content (the "real stuff")
  374. */
  375. #nonFooter {
  376. padding-top: 40px;
  377. }
  378. #wrapper {
  379. height: 100%;
  380. }
  381. .content {
  382. height: 100%;
  383. }
  384. header.filler {
  385. position: relative;
  386. height: 40px;
  387. width: 100%;
  388. }
  389. /*
  390. .container-fluid .row-fluid {
  391. width: 1000px;
  392. margin-left: auto;
  393. margin-right: auto;
  394. }*/
  395. .divider {
  396. height: 3px;
  397. background-color: #BEDAEA;
  398. margin-bottom: 3px;
  399. }
  400. #sidebar h3 a,
  401. #sidebar h3 a:hover {
  402. color: #404040;
  403. }
  404. #sidebarContainer {
  405. padding-top: 20px;
  406. }
  407. #mainContent {
  408. margin-left: 30px;
  409. }
  410. #documentation {
  411. padding-top: 35px;
  412. padding-bottom: 10px;
  413. }
  414. #documentation article.article {
  415. border-top: 1px solid #e9e9e9;
  416. padding: 16px 10px 2px;
  417. -webkit-transition: padding 0.2s;
  418. -moz-transition: padding 0.2s;
  419. -o-transition: padding 0.2s;
  420. }
  421. #documentation h3.sectionHeader + article.article {
  422. border-top: none;
  423. }
  424. div#documentation article:last-child {
  425. border-bottom: 1px solid #e9e9e9;
  426. padding-bottom: 40px;
  427. }
  428. #documentation article.article.methodToggleOpen {
  429. background: rgba(255, 255, 255, 0.5);
  430. font-size: 13px;
  431. line-height: 24px;
  432. margin: 0 0 10px 0;
  433. }
  434. #documentation article:first-child {
  435. border:none;
  436. }
  437. .site_logo {
  438. display: block;
  439. margin-left: auto;
  440. margin-right: auto;
  441. }
  442. /*
  443. Edit in Cloud9, sucka
  444. */
  445. .snippet pre {
  446. margin-bottom: 0;
  447. }
  448. .snippet .toolbar {
  449. -webkit-border-radius: 0 0 6px 6px;
  450. -moz-border-radius: 0 0 6px 6px;
  451. border-radius: 0 0 6px 6px;
  452. text-align: right;
  453. padding: 3px 10px;
  454. margin-top : -1px;
  455. }
  456. .snippet .filename, .snippet .toolbar {
  457. font-family: Ubuntu, sans-serif;
  458. font-size: 12px;
  459. color: #EEE;
  460. }
  461. .snippet .filename {
  462. padding: 0 5px 2px 5px;
  463. font-size: 10px;
  464. background: rgba(230,230,230,0.5);
  465. padding: 0 5px 2px 5px;
  466. border-radius: 0 6px 0 6px;
  467. margin : 1px;
  468. position : absolute;
  469. right : 0;
  470. top : 0;
  471. }
  472. .snippet .filename span{
  473. color : #666;
  474. }
  475. .snippet .toolbar {
  476. background-color: rgba(30,30,30,0.5);
  477. }
  478. div.snippet {
  479. margin-bottom: 18px;
  480. position : relative;
  481. }
  482. div.snippet a, div.toolbar a {
  483. color: #FFF;
  484. }
  485. /*
  486. All about signatures
  487. */
  488. .signatures {
  489. /* width: 800px;*/
  490. margin-left: 20px;
  491. margin-bottom: 5px;
  492. }
  493. .sideToggler {
  494. padding-left: 20px;
  495. }
  496. ul.signatures ul {
  497. list-style: none;
  498. display: inline;
  499. }
  500. li.signature {
  501. list-style: none;
  502. }
  503. .signature ul {
  504. padding: 0;
  505. margin: 0;
  506. }
  507. .signature li {
  508. display: inline;
  509. }
  510. .signature ul.argument-types::before {
  511. content: '→';
  512. margin: 0 5px;
  513. }
  514. .signature li.argument-type::after {
  515. content: '|';
  516. padding: 0 5px 0 5px;
  517. }
  518. .signature li.argument-type:last-child:after {
  519. content: '';
  520. padding: 0 5px 0 5px;
  521. }
  522. .member-name {
  523. color: #4397cd;
  524. font-weight: bold;
  525. text-decoration: none;
  526. cursor: pointer;
  527. padding-right: 3px;
  528. }
  529. .signature-call {
  530. cursor: pointer;
  531. }
  532. #documentation .signature-call a {
  533. color: #8e487e;
  534. }
  535. .sigClassName {
  536. display: none;
  537. }
  538. .eventObjName {
  539. font-style: italic;
  540. }
  541. .eventListenerStart, .eventListenerClose, .eventFunctionOpen, .eventFunctionClose {
  542. color: #999999;
  543. }
  544. .eventMember {
  545. padding-right: 0px;
  546. }
  547. .metaInfo {
  548. float: right;
  549. z-index: 1;
  550. position: relative;
  551. }
  552. .chainable {
  553. background-color: #0072bc;
  554. color: #ffffff;
  555. }
  556. .deprecated {
  557. background-color: #f7941d;
  558. color: #ffffff;
  559. }
  560. .alias {
  561. background-color: #6c951e;
  562. color: #ffffff;
  563. }
  564. .related-to {
  565. background-color: #89289a;
  566. color: #ffffff;
  567. font-size: 10px;
  568. padding: 2px 5px 3px;
  569. text-transform: capitalize;
  570. }
  571. .undocumented {
  572. background-color: #B94A48;
  573. color: #ffffff;
  574. }
  575. #documentation .alias a, #documentation .related-to a {
  576. color: #ffffff;
  577. /* text-decoration: underline; */
  578. }
  579. #documentation .alias a:hover, #documentation .related-to a:hover {
  580. text-decoration: none;
  581. }
  582. .#documentation alias:hover, #documentation .related-to:hover {
  583. opacity: 0.8;
  584. cursor: pointer;
  585. }
  586. .memberContent .title {
  587. }
  588. .memberContent .description {
  589. position:relative;
  590. /*top: -13px;*/
  591. display: none;
  592. }
  593. .snip-container .actions .toggle-plaintext label {
  594. margin-top: 1px;
  595. padding-top: 0;
  596. text-align: left;
  597. }
  598. .snip-container .actions .toggle-plaintext input {
  599. margin-top: 4px !important;
  600. }
  601. .snip-container label {
  602. color: #ffffff;
  603. }
  604. .description h4 {
  605. padding-top: 10px;
  606. font-size: 18px;
  607. line-height : 18px;
  608. }
  609. .table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
  610. background-color: #F9F9F9;
  611. }
  612. .table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
  613. background-color: #fbfbfb;
  614. }
  615. .argument-list {
  616. margin-bottom : 13px;
  617. }
  618. .argName {
  619. font-style: italic;
  620. }
  621. /*
  622. Everyday I'm togglin'
  623. */
  624. #documentation i.methodToggle {
  625. cursor: pointer;
  626. color: #9f9f9f;
  627. padding-top: 2px;
  628. float: left;
  629. }
  630. #documentation i.methodToggle.methodToggleHover {
  631. text-shadow: 0 0 10px #4699d5;
  632. color: #4699d5;
  633. }
  634. #documentation i.methodToggle.active {
  635. text-shadow: 0 0 10px #4699d5;
  636. color: #4699d5;
  637. /* Safari */
  638. -webkit-transform: rotate(45deg);
  639. /* Firefox */
  640. -moz-transform: rotate(45deg);
  641. /* IE */
  642. -ms-transform: rotate(45deg);
  643. /* Opera */
  644. -o-transform: rotate(45deg);
  645. padding-top: 9px;
  646. }
  647. #documentation h3.sectionHeader {
  648. line-height : 24px;
  649. }
  650. div.method {
  651. position: relative;
  652. }
  653. .methodToggle a {
  654. color: #fff;
  655. border-bottom: 0px;
  656. text-decoration: none;
  657. }
  658. h3.methodToggle {
  659. height : 13px;
  660. width : 8px;
  661. background-position : 0px 0px;
  662. position: absolute;
  663. top: -20px;
  664. background-image : url(../images/member-sprites.png);
  665. background-color : transparent;
  666. background-repeat : no-repeat;
  667. overflow: hidden;
  668. left: 0px;
  669. }
  670. h3.methodToggleHover {
  671. /* background-position : 0px -28px; */
  672. }
  673. h3.methodToggle.inactive {
  674. top: 4px;
  675. }
  676. h3.methodToggle.active {
  677. top: 6px;
  678. height : 13px;
  679. width : 8px;
  680. background-position : 0px -59px;
  681. }
  682. .hidden {
  683. display: none;
  684. visibility: hidden;
  685. }
  686. .hiddenSpan {
  687. display: none;
  688. }
  689. .ellipsis_description, .short_description {
  690. /* width: 800px;*/
  691. }
  692. .methodToggleOpen .ellipsis_description {
  693. display: none;
  694. }
  695. .sideToggler .short_description,
  696. .sideToggler .description{
  697. display: none;
  698. }
  699. .methodToggleOpen .short_description,
  700. .methodToggleOpen .description {
  701. display: block;
  702. }
  703. .description td p {
  704. margin: 0;
  705. }
  706. /*
  707. Footer? I hardly know her
  708. */
  709. #footer {
  710. width:100%;
  711. background: #101010 url(../images/dashed_back.png) repeat 0 0;
  712. font-size: 12px;
  713. color: white;
  714. height: 40px;
  715. }
  716. #footer .footerInner {
  717. padding-left: 300px;
  718. margin-left: auto;
  719. margin-right: auto;
  720. min-height: 40px;
  721. }
  722. #footer .footer-text {
  723. display: block;
  724. font-size: 12px;
  725. float: right;
  726. }
  727. #footer div.footerInner div.footer-text p {
  728. font-size: 12px;
  729. font-family: Arial;
  730. line-height: 18px;
  731. margin: 10px 15px 0px 1px;
  732. }
  733. #footer a, #footer a:hover {
  734. color: #8DD0FF;
  735. }
  736. .logoText, .logoImg {
  737. /*position: absolute;*/
  738. margin-bottom: 5px;
  739. }
  740. .logoImg {
  741. top: 40px;
  742. }
  743. .topbar div > ul .menu-dropdown li a:hover,
  744. .nav .menu-dropdown li a:hover,
  745. .topbar div > ul .dropdown-menu li a:hover,
  746. .nav .dropdown-menu li a:hover {
  747. background-color: #191919;
  748. background-repeat: repeat-x;
  749. background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
  750. background-image: -moz-linear-gradient(top, #292929, #191919);
  751. background-image: -ms-linear-gradient(top, #292929, #191919);
  752. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
  753. background-image: -webkit-linear-gradient(top, #292929, #191919);
  754. background-image: -o-linear-gradient(top, #292929, #191919);
  755. background-image: linear-gradient(top, #292929, #191919);
  756. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
  757. color: #ffffff;
  758. }
  759. .alert-message.block-message {
  760. background: #fefaca;
  761. border-color : #fefaca;
  762. padding : 8px 14px 8px 14px;
  763. }
  764. body .dsq-reply{
  765. margin-top : 10px;
  766. }
  767. #disqus_thread{
  768. border-top : 1px solid #ddd;
  769. margin-top : 30px;
  770. }
  771. #disqus_thread h3, body #dsq-content h3 {
  772. font-size : 12px;
  773. margin : 0 0 20px 0;
  774. line-height : 12px;
  775. }
  776. body #dsq-reply h3{
  777. font-size : 18px;
  778. line-height : 18px;
  779. margin : 15px 0 20px 0;
  780. }
  781. #disqus_thread select{
  782. font-size : 11px;
  783. height : 20px;
  784. color : #444;
  785. }
  786. #dsq-global-toolbar, #dsq-pagination, .dsq-trackback-url{
  787. display : none;
  788. }