editor.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238
  1. * {
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box;
  5. }
  6. *:before,
  7. *:after {
  8. -webkit-box-sizing: border-box;
  9. -moz-box-sizing: border-box;
  10. box-sizing: border-box;
  11. }
  12. html {
  13. font-size: 62.5%;
  14. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  15. }
  16. body {
  17. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  18. font-size: 14px;
  19. line-height: 1.42857143;
  20. color: #333333;
  21. background-color: #ffffff;
  22. }
  23. input,
  24. button,
  25. select,
  26. textarea {
  27. font-family: inherit;
  28. font-size: inherit;
  29. line-height: inherit;
  30. }
  31. a {
  32. color: #428bca;
  33. text-decoration: none;
  34. }
  35. a:hover,
  36. a:focus {
  37. color: #2a6496;
  38. text-decoration: underline;
  39. }
  40. a:focus {
  41. outline: thin dotted;
  42. outline: 5px auto -webkit-focus-ring-color;
  43. outline-offset: -2px;
  44. }
  45. figure {
  46. margin: 0;
  47. }
  48. img {
  49. vertical-align: middle;
  50. }
  51. .img-responsive,
  52. .thumbnail > img,
  53. .thumbnail a > img {
  54. display: block;
  55. max-width: 100%;
  56. height: auto;
  57. }
  58. .img-rounded {
  59. border-radius: 6px;
  60. }
  61. .img-thumbnail {
  62. padding: 4px;
  63. line-height: 1.42857143;
  64. background-color: #ffffff;
  65. border: 1px solid #dddddd;
  66. border-radius: 4px;
  67. -webkit-transition: all 0.2s ease-in-out;
  68. transition: all 0.2s ease-in-out;
  69. display: inline-block;
  70. max-width: 100%;
  71. height: auto;
  72. }
  73. .img-circle {
  74. border-radius: 50%;
  75. }
  76. hr {
  77. margin-top: 20px;
  78. margin-bottom: 20px;
  79. border: 0;
  80. border-top: 1px solid #eeeeee;
  81. }
  82. .sr-only {
  83. position: absolute;
  84. width: 1px;
  85. height: 1px;
  86. margin: -1px;
  87. padding: 0;
  88. overflow: hidden;
  89. clip: rect(0, 0, 0, 0);
  90. border: 0;
  91. }
  92. h1,
  93. h2,
  94. h3,
  95. h4,
  96. h5,
  97. h6,
  98. .h1,
  99. .h2,
  100. .h3,
  101. .h4,
  102. .h5,
  103. .h6 {
  104. font-family: inherit;
  105. font-weight: 500;
  106. line-height: 1.1;
  107. color: inherit;
  108. }
  109. h1 small,
  110. h2 small,
  111. h3 small,
  112. h4 small,
  113. h5 small,
  114. h6 small,
  115. .h1 small,
  116. .h2 small,
  117. .h3 small,
  118. .h4 small,
  119. .h5 small,
  120. .h6 small,
  121. h1 .small,
  122. h2 .small,
  123. h3 .small,
  124. h4 .small,
  125. h5 .small,
  126. h6 .small,
  127. .h1 .small,
  128. .h2 .small,
  129. .h3 .small,
  130. .h4 .small,
  131. .h5 .small,
  132. .h6 .small {
  133. font-weight: normal;
  134. line-height: 1;
  135. color: #999999;
  136. }
  137. h1,
  138. .h1,
  139. h2,
  140. .h2,
  141. h3,
  142. .h3 {
  143. margin-top: 20px;
  144. margin-bottom: 10px;
  145. }
  146. h1 small,
  147. .h1 small,
  148. h2 small,
  149. .h2 small,
  150. h3 small,
  151. .h3 small,
  152. h1 .small,
  153. .h1 .small,
  154. h2 .small,
  155. .h2 .small,
  156. h3 .small,
  157. .h3 .small {
  158. font-size: 65%;
  159. }
  160. h4,
  161. .h4,
  162. h5,
  163. .h5,
  164. h6,
  165. .h6 {
  166. margin-top: 10px;
  167. margin-bottom: 10px;
  168. }
  169. h4 small,
  170. .h4 small,
  171. h5 small,
  172. .h5 small,
  173. h6 small,
  174. .h6 small,
  175. h4 .small,
  176. .h4 .small,
  177. h5 .small,
  178. .h5 .small,
  179. h6 .small,
  180. .h6 .small {
  181. font-size: 75%;
  182. }
  183. h1,
  184. .h1 {
  185. font-size: 36px;
  186. }
  187. h2,
  188. .h2 {
  189. font-size: 30px;
  190. }
  191. h3,
  192. .h3 {
  193. font-size: 24px;
  194. }
  195. h4,
  196. .h4 {
  197. font-size: 18px;
  198. }
  199. h5,
  200. .h5 {
  201. font-size: 14px;
  202. }
  203. h6,
  204. .h6 {
  205. font-size: 12px;
  206. }
  207. p {
  208. margin: 0 0 10px;
  209. }
  210. .lead {
  211. margin-bottom: 20px;
  212. font-size: 16px;
  213. font-weight: 200;
  214. line-height: 1.4;
  215. }
  216. @media (min-width: 768px) {
  217. .lead {
  218. font-size: 21px;
  219. }
  220. }
  221. small,
  222. .small {
  223. font-size: 85%;
  224. }
  225. cite {
  226. font-style: normal;
  227. }
  228. .text-left {
  229. text-align: left;
  230. }
  231. .text-right {
  232. text-align: right;
  233. }
  234. .text-center {
  235. text-align: center;
  236. }
  237. .text-justify {
  238. text-align: justify;
  239. }
  240. .text-muted {
  241. color: #999999;
  242. }
  243. .text-primary {
  244. color: #428bca;
  245. }
  246. a.text-primary:hover {
  247. color: #3071a9;
  248. }
  249. .text-success {
  250. color: #3c763d;
  251. }
  252. a.text-success:hover {
  253. color: #2b542c;
  254. }
  255. .text-info {
  256. color: #31708f;
  257. }
  258. a.text-info:hover {
  259. color: #245269;
  260. }
  261. .text-warning {
  262. color: #8a6d3b;
  263. }
  264. a.text-warning:hover {
  265. color: #66512c;
  266. }
  267. .text-danger {
  268. color: #a94442;
  269. }
  270. a.text-danger:hover {
  271. color: #843534;
  272. }
  273. .bg-primary {
  274. color: #fff;
  275. background-color: #428bca;
  276. }
  277. a.bg-primary:hover {
  278. background-color: #3071a9;
  279. }
  280. .bg-success {
  281. background-color: #dff0d8;
  282. }
  283. a.bg-success:hover {
  284. background-color: #c1e2b3;
  285. }
  286. .bg-info {
  287. background-color: #d9edf7;
  288. }
  289. a.bg-info:hover {
  290. background-color: #afd9ee;
  291. }
  292. .bg-warning {
  293. background-color: #fcf8e3;
  294. }
  295. a.bg-warning:hover {
  296. background-color: #f7ecb5;
  297. }
  298. .bg-danger {
  299. background-color: #f2dede;
  300. }
  301. a.bg-danger:hover {
  302. background-color: #e4b9b9;
  303. }
  304. .page-header {
  305. padding-bottom: 9px;
  306. margin: 40px 0 20px;
  307. border-bottom: 1px solid #eeeeee;
  308. }
  309. ul,
  310. ol {
  311. margin-top: 0;
  312. margin-bottom: 10px;
  313. }
  314. ul ul,
  315. ol ul,
  316. ul ol,
  317. ol ol {
  318. margin-bottom: 0;
  319. }
  320. .list-unstyled {
  321. padding-left: 0;
  322. list-style: none;
  323. }
  324. .list-inline {
  325. padding-left: 0;
  326. list-style: none;
  327. margin-left: -5px;
  328. }
  329. .list-inline > li {
  330. display: inline-block;
  331. padding-left: 5px;
  332. padding-right: 5px;
  333. }
  334. dl {
  335. margin-top: 0;
  336. margin-bottom: 20px;
  337. }
  338. dt,
  339. dd {
  340. line-height: 1.42857143;
  341. }
  342. dt {
  343. font-weight: bold;
  344. }
  345. dd {
  346. margin-left: 0;
  347. }
  348. @media (min-width: 768px) {
  349. .dl-horizontal dt {
  350. float: left;
  351. width: 160px;
  352. clear: left;
  353. text-align: right;
  354. overflow: hidden;
  355. text-overflow: ellipsis;
  356. white-space: nowrap;
  357. }
  358. .dl-horizontal dd {
  359. margin-left: 180px;
  360. }
  361. }
  362. abbr[title],
  363. abbr[data-original-title] {
  364. cursor: help;
  365. border-bottom: 1px dotted #999999;
  366. }
  367. .initialism {
  368. font-size: 90%;
  369. text-transform: uppercase;
  370. }
  371. blockquote {
  372. padding: 10px 20px;
  373. margin: 0 0 20px;
  374. font-size: 17.5px;
  375. border-left: 5px solid #eeeeee;
  376. }
  377. blockquote p:last-child,
  378. blockquote ul:last-child,
  379. blockquote ol:last-child {
  380. margin-bottom: 0;
  381. }
  382. blockquote footer,
  383. blockquote small,
  384. blockquote .small {
  385. display: block;
  386. font-size: 80%;
  387. line-height: 1.42857143;
  388. color: #999999;
  389. }
  390. blockquote footer:before,
  391. blockquote small:before,
  392. blockquote .small:before {
  393. content: '\2014 \00A0';
  394. }
  395. .blockquote-reverse,
  396. blockquote.pull-right {
  397. padding-right: 15px;
  398. padding-left: 0;
  399. border-right: 5px solid #eeeeee;
  400. border-left: 0;
  401. text-align: right;
  402. }
  403. .blockquote-reverse footer:before,
  404. blockquote.pull-right footer:before,
  405. .blockquote-reverse small:before,
  406. blockquote.pull-right small:before,
  407. .blockquote-reverse .small:before,
  408. blockquote.pull-right .small:before {
  409. content: '';
  410. }
  411. .blockquote-reverse footer:after,
  412. blockquote.pull-right footer:after,
  413. .blockquote-reverse small:after,
  414. blockquote.pull-right small:after,
  415. .blockquote-reverse .small:after,
  416. blockquote.pull-right .small:after {
  417. content: '\00A0 \2014';
  418. }
  419. blockquote:before,
  420. blockquote:after {
  421. content: "";
  422. }
  423. address {
  424. margin-bottom: 20px;
  425. font-style: normal;
  426. line-height: 1.42857143;
  427. }
  428. code,
  429. kbd,
  430. pre,
  431. samp {
  432. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  433. }
  434. code {
  435. padding: 2px 4px;
  436. font-size: 90%;
  437. color: #c7254e;
  438. background-color: #f9f2f4;
  439. white-space: nowrap;
  440. border-radius: 4px;
  441. }
  442. kbd {
  443. padding: 2px 4px;
  444. font-size: 90%;
  445. color: #ffffff;
  446. background-color: #333333;
  447. border-radius: 3px;
  448. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  449. }
  450. pre {
  451. display: block;
  452. padding: 9.5px;
  453. margin: 0 0 10px;
  454. font-size: 13px;
  455. line-height: 1.42857143;
  456. word-break: break-all;
  457. word-wrap: break-word;
  458. color: #333333;
  459. background-color: #f5f5f5;
  460. border: 1px solid #cccccc;
  461. border-radius: 4px;
  462. }
  463. pre code {
  464. padding: 0;
  465. font-size: inherit;
  466. color: inherit;
  467. white-space: pre-wrap;
  468. background-color: transparent;
  469. border-radius: 0;
  470. }
  471. .pre-scrollable {
  472. max-height: 340px;
  473. overflow-y: scroll;
  474. }
  475. table {
  476. max-width: 100%;
  477. background-color: transparent;
  478. }
  479. th {
  480. text-align: left;
  481. }
  482. .table {
  483. width: 100%;
  484. margin-bottom: 20px;
  485. }
  486. .table > thead > tr > th,
  487. .table > tbody > tr > th,
  488. .table > tfoot > tr > th,
  489. .table > thead > tr > td,
  490. .table > tbody > tr > td,
  491. .table > tfoot > tr > td {
  492. padding: 8px;
  493. line-height: 1.42857143;
  494. vertical-align: top;
  495. border-top: 1px solid #dddddd;
  496. }
  497. .table > thead > tr > th {
  498. vertical-align: bottom;
  499. border-bottom: 2px solid #dddddd;
  500. }
  501. .table > caption + thead > tr:first-child > th,
  502. .table > colgroup + thead > tr:first-child > th,
  503. .table > thead:first-child > tr:first-child > th,
  504. .table > caption + thead > tr:first-child > td,
  505. .table > colgroup + thead > tr:first-child > td,
  506. .table > thead:first-child > tr:first-child > td {
  507. border-top: 0;
  508. }
  509. .table > tbody + tbody {
  510. border-top: 2px solid #dddddd;
  511. }
  512. .table .table {
  513. background-color: #ffffff;
  514. }
  515. .table-condensed > thead > tr > th,
  516. .table-condensed > tbody > tr > th,
  517. .table-condensed > tfoot > tr > th,
  518. .table-condensed > thead > tr > td,
  519. .table-condensed > tbody > tr > td,
  520. .table-condensed > tfoot > tr > td {
  521. padding: 5px;
  522. }
  523. .table-bordered {
  524. border: 1px solid #dddddd;
  525. }
  526. .table-bordered > thead > tr > th,
  527. .table-bordered > tbody > tr > th,
  528. .table-bordered > tfoot > tr > th,
  529. .table-bordered > thead > tr > td,
  530. .table-bordered > tbody > tr > td,
  531. .table-bordered > tfoot > tr > td {
  532. border: 1px solid #dddddd;
  533. }
  534. .table-bordered > thead > tr > th,
  535. .table-bordered > thead > tr > td {
  536. border-bottom-width: 2px;
  537. }
  538. .table-striped > tbody > tr:nth-child(odd) > td,
  539. .table-striped > tbody > tr:nth-child(odd) > th {
  540. background-color: #f9f9f9;
  541. }
  542. .table-hover > tbody > tr:hover > td,
  543. .table-hover > tbody > tr:hover > th {
  544. background-color: #f5f5f5;
  545. }
  546. table col[class*="col-"] {
  547. position: static;
  548. float: none;
  549. display: table-column;
  550. }
  551. table td[class*="col-"],
  552. table th[class*="col-"] {
  553. position: static;
  554. float: none;
  555. display: table-cell;
  556. }
  557. .table > thead > tr > td.active,
  558. .table > tbody > tr > td.active,
  559. .table > tfoot > tr > td.active,
  560. .table > thead > tr > th.active,
  561. .table > tbody > tr > th.active,
  562. .table > tfoot > tr > th.active,
  563. .table > thead > tr.active > td,
  564. .table > tbody > tr.active > td,
  565. .table > tfoot > tr.active > td,
  566. .table > thead > tr.active > th,
  567. .table > tbody > tr.active > th,
  568. .table > tfoot > tr.active > th {
  569. background-color: #f5f5f5;
  570. }
  571. .table-hover > tbody > tr > td.active:hover,
  572. .table-hover > tbody > tr > th.active:hover,
  573. .table-hover > tbody > tr.active:hover > td,
  574. .table-hover > tbody > tr.active:hover > th {
  575. background-color: #e8e8e8;
  576. }
  577. .table > thead > tr > td.success,
  578. .table > tbody > tr > td.success,
  579. .table > tfoot > tr > td.success,
  580. .table > thead > tr > th.success,
  581. .table > tbody > tr > th.success,
  582. .table > tfoot > tr > th.success,
  583. .table > thead > tr.success > td,
  584. .table > tbody > tr.success > td,
  585. .table > tfoot > tr.success > td,
  586. .table > thead > tr.success > th,
  587. .table > tbody > tr.success > th,
  588. .table > tfoot > tr.success > th {
  589. background-color: #dff0d8;
  590. }
  591. .table-hover > tbody > tr > td.success:hover,
  592. .table-hover > tbody > tr > th.success:hover,
  593. .table-hover > tbody > tr.success:hover > td,
  594. .table-hover > tbody > tr.success:hover > th {
  595. background-color: #d0e9c6;
  596. }
  597. .table > thead > tr > td.info,
  598. .table > tbody > tr > td.info,
  599. .table > tfoot > tr > td.info,
  600. .table > thead > tr > th.info,
  601. .table > tbody > tr > th.info,
  602. .table > tfoot > tr > th.info,
  603. .table > thead > tr.info > td,
  604. .table > tbody > tr.info > td,
  605. .table > tfoot > tr.info > td,
  606. .table > thead > tr.info > th,
  607. .table > tbody > tr.info > th,
  608. .table > tfoot > tr.info > th {
  609. background-color: #d9edf7;
  610. }
  611. .table-hover > tbody > tr > td.info:hover,
  612. .table-hover > tbody > tr > th.info:hover,
  613. .table-hover > tbody > tr.info:hover > td,
  614. .table-hover > tbody > tr.info:hover > th {
  615. background-color: #c4e3f3;
  616. }
  617. .table > thead > tr > td.warning,
  618. .table > tbody > tr > td.warning,
  619. .table > tfoot > tr > td.warning,
  620. .table > thead > tr > th.warning,
  621. .table > tbody > tr > th.warning,
  622. .table > tfoot > tr > th.warning,
  623. .table > thead > tr.warning > td,
  624. .table > tbody > tr.warning > td,
  625. .table > tfoot > tr.warning > td,
  626. .table > thead > tr.warning > th,
  627. .table > tbody > tr.warning > th,
  628. .table > tfoot > tr.warning > th {
  629. background-color: #fcf8e3;
  630. }
  631. .table-hover > tbody > tr > td.warning:hover,
  632. .table-hover > tbody > tr > th.warning:hover,
  633. .table-hover > tbody > tr.warning:hover > td,
  634. .table-hover > tbody > tr.warning:hover > th {
  635. background-color: #faf2cc;
  636. }
  637. .table > thead > tr > td.danger,
  638. .table > tbody > tr > td.danger,
  639. .table > tfoot > tr > td.danger,
  640. .table > thead > tr > th.danger,
  641. .table > tbody > tr > th.danger,
  642. .table > tfoot > tr > th.danger,
  643. .table > thead > tr.danger > td,
  644. .table > tbody > tr.danger > td,
  645. .table > tfoot > tr.danger > td,
  646. .table > thead > tr.danger > th,
  647. .table > tbody > tr.danger > th,
  648. .table > tfoot > tr.danger > th {
  649. background-color: #f2dede;
  650. }
  651. .table-hover > tbody > tr > td.danger:hover,
  652. .table-hover > tbody > tr > th.danger:hover,
  653. .table-hover > tbody > tr.danger:hover > td,
  654. .table-hover > tbody > tr.danger:hover > th {
  655. background-color: #ebcccc;
  656. }
  657. @media (max-width: 767px) {
  658. .table-responsive {
  659. width: 100%;
  660. margin-bottom: 15px;
  661. overflow-y: hidden;
  662. overflow-x: scroll;
  663. -ms-overflow-style: -ms-autohiding-scrollbar;
  664. border: 1px solid #dddddd;
  665. -webkit-overflow-scrolling: touch;
  666. }
  667. .table-responsive > .table {
  668. margin-bottom: 0;
  669. }
  670. .table-responsive > .table > thead > tr > th,
  671. .table-responsive > .table > tbody > tr > th,
  672. .table-responsive > .table > tfoot > tr > th,
  673. .table-responsive > .table > thead > tr > td,
  674. .table-responsive > .table > tbody > tr > td,
  675. .table-responsive > .table > tfoot > tr > td {
  676. white-space: nowrap;
  677. }
  678. .table-responsive > .table-bordered {
  679. border: 0;
  680. }
  681. .table-responsive > .table-bordered > thead > tr > th:first-child,
  682. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  683. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  684. .table-responsive > .table-bordered > thead > tr > td:first-child,
  685. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  686. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  687. border-left: 0;
  688. }
  689. .table-responsive > .table-bordered > thead > tr > th:last-child,
  690. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  691. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  692. .table-responsive > .table-bordered > thead > tr > td:last-child,
  693. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  694. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  695. border-right: 0;
  696. }
  697. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  698. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  699. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  700. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  701. border-bottom: 0;
  702. }
  703. }
  704. .well {
  705. min-height: 20px;
  706. padding: 19px;
  707. margin-bottom: 20px;
  708. background-color: #f5f5f5;
  709. border: 1px solid #e3e3e3;
  710. border-radius: 4px;
  711. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  712. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  713. }
  714. .well blockquote {
  715. border-color: #ddd;
  716. border-color: rgba(0, 0, 0, 0.15);
  717. }
  718. .well-lg {
  719. padding: 24px;
  720. border-radius: 6px;
  721. }
  722. .well-sm {
  723. padding: 9px;
  724. border-radius: 3px;
  725. }
  726. .btn {
  727. display: inline-block;
  728. margin-bottom: 0;
  729. font-weight: normal;
  730. text-align: center;
  731. vertical-align: middle;
  732. cursor: pointer;
  733. background-image: none;
  734. border: 1px solid transparent;
  735. white-space: nowrap;
  736. padding: 6px 12px;
  737. font-size: 14px;
  738. line-height: 1.42857143;
  739. border-radius: 4px;
  740. -webkit-user-select: none;
  741. -moz-user-select: none;
  742. -ms-user-select: none;
  743. user-select: none;
  744. }
  745. .btn:focus,
  746. .btn:active:focus,
  747. .btn.active:focus {
  748. outline: thin dotted;
  749. outline: 5px auto -webkit-focus-ring-color;
  750. outline-offset: -2px;
  751. }
  752. .btn:hover,
  753. .btn:focus {
  754. color: #333333;
  755. text-decoration: none;
  756. }
  757. .btn:active,
  758. .btn.active {
  759. outline: 0;
  760. background-image: none;
  761. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  762. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  763. }
  764. .btn.disabled,
  765. .btn[disabled],
  766. fieldset[disabled] .btn {
  767. cursor: not-allowed;
  768. pointer-events: none;
  769. opacity: 0.65;
  770. filter: alpha(opacity=65);
  771. -webkit-box-shadow: none;
  772. box-shadow: none;
  773. }
  774. .btn-default {
  775. color: #333333;
  776. background-color: #ffffff;
  777. border-color: #cccccc;
  778. }
  779. .btn-default:hover,
  780. .btn-default:focus,
  781. .btn-default:active,
  782. .btn-default.active,
  783. .open .dropdown-toggle.btn-default {
  784. color: #333333;
  785. background-color: #ebebeb;
  786. border-color: #adadad;
  787. }
  788. .btn-default:active,
  789. .btn-default.active,
  790. .open .dropdown-toggle.btn-default {
  791. background-image: none;
  792. }
  793. .btn-default.disabled,
  794. .btn-default[disabled],
  795. fieldset[disabled] .btn-default,
  796. .btn-default.disabled:hover,
  797. .btn-default[disabled]:hover,
  798. fieldset[disabled] .btn-default:hover,
  799. .btn-default.disabled:focus,
  800. .btn-default[disabled]:focus,
  801. fieldset[disabled] .btn-default:focus,
  802. .btn-default.disabled:active,
  803. .btn-default[disabled]:active,
  804. fieldset[disabled] .btn-default:active,
  805. .btn-default.disabled.active,
  806. .btn-default[disabled].active,
  807. fieldset[disabled] .btn-default.active {
  808. background-color: #ffffff;
  809. border-color: #cccccc;
  810. }
  811. .btn-default .badge {
  812. color: #ffffff;
  813. background-color: #333333;
  814. }
  815. .btn-primary {
  816. color: #ffffff;
  817. background-color: #428bca;
  818. border-color: #357ebd;
  819. }
  820. .btn-primary:hover,
  821. .btn-primary:focus,
  822. .btn-primary:active,
  823. .btn-primary.active,
  824. .open .dropdown-toggle.btn-primary {
  825. color: #ffffff;
  826. background-color: #3276b1;
  827. border-color: #285e8e;
  828. }
  829. .btn-primary:active,
  830. .btn-primary.active,
  831. .open .dropdown-toggle.btn-primary {
  832. background-image: none;
  833. }
  834. .btn-primary.disabled,
  835. .btn-primary[disabled],
  836. fieldset[disabled] .btn-primary,
  837. .btn-primary.disabled:hover,
  838. .btn-primary[disabled]:hover,
  839. fieldset[disabled] .btn-primary:hover,
  840. .btn-primary.disabled:focus,
  841. .btn-primary[disabled]:focus,
  842. fieldset[disabled] .btn-primary:focus,
  843. .btn-primary.disabled:active,
  844. .btn-primary[disabled]:active,
  845. fieldset[disabled] .btn-primary:active,
  846. .btn-primary.disabled.active,
  847. .btn-primary[disabled].active,
  848. fieldset[disabled] .btn-primary.active {
  849. background-color: #428bca;
  850. border-color: #357ebd;
  851. }
  852. .btn-primary .badge {
  853. color: #428bca;
  854. background-color: #ffffff;
  855. }
  856. .btn-success {
  857. color: #ffffff;
  858. background-color: #5cb85c;
  859. border-color: #4cae4c;
  860. }
  861. .btn-success:hover,
  862. .btn-success:focus,
  863. .btn-success:active,
  864. .btn-success.active,
  865. .open .dropdown-toggle.btn-success {
  866. color: #ffffff;
  867. background-color: #47a447;
  868. border-color: #398439;
  869. }
  870. .btn-success:active,
  871. .btn-success.active,
  872. .open .dropdown-toggle.btn-success {
  873. background-image: none;
  874. }
  875. .btn-success.disabled,
  876. .btn-success[disabled],
  877. fieldset[disabled] .btn-success,
  878. .btn-success.disabled:hover,
  879. .btn-success[disabled]:hover,
  880. fieldset[disabled] .btn-success:hover,
  881. .btn-success.disabled:focus,
  882. .btn-success[disabled]:focus,
  883. fieldset[disabled] .btn-success:focus,
  884. .btn-success.disabled:active,
  885. .btn-success[disabled]:active,
  886. fieldset[disabled] .btn-success:active,
  887. .btn-success.disabled.active,
  888. .btn-success[disabled].active,
  889. fieldset[disabled] .btn-success.active {
  890. background-color: #5cb85c;
  891. border-color: #4cae4c;
  892. }
  893. .btn-success .badge {
  894. color: #5cb85c;
  895. background-color: #ffffff;
  896. }
  897. .btn-info {
  898. color: #ffffff;
  899. background-color: #5bc0de;
  900. border-color: #46b8da;
  901. }
  902. .btn-info:hover,
  903. .btn-info:focus,
  904. .btn-info:active,
  905. .btn-info.active,
  906. .open .dropdown-toggle.btn-info {
  907. color: #ffffff;
  908. background-color: #39b3d7;
  909. border-color: #269abc;
  910. }
  911. .btn-info:active,
  912. .btn-info.active,
  913. .open .dropdown-toggle.btn-info {
  914. background-image: none;
  915. }
  916. .btn-info.disabled,
  917. .btn-info[disabled],
  918. fieldset[disabled] .btn-info,
  919. .btn-info.disabled:hover,
  920. .btn-info[disabled]:hover,
  921. fieldset[disabled] .btn-info:hover,
  922. .btn-info.disabled:focus,
  923. .btn-info[disabled]:focus,
  924. fieldset[disabled] .btn-info:focus,
  925. .btn-info.disabled:active,
  926. .btn-info[disabled]:active,
  927. fieldset[disabled] .btn-info:active,
  928. .btn-info.disabled.active,
  929. .btn-info[disabled].active,
  930. fieldset[disabled] .btn-info.active {
  931. background-color: #5bc0de;
  932. border-color: #46b8da;
  933. }
  934. .btn-info .badge {
  935. color: #5bc0de;
  936. background-color: #ffffff;
  937. }
  938. .btn-warning {
  939. color: #ffffff;
  940. background-color: #f0ad4e;
  941. border-color: #eea236;
  942. }
  943. .btn-warning:hover,
  944. .btn-warning:focus,
  945. .btn-warning:active,
  946. .btn-warning.active,
  947. .open .dropdown-toggle.btn-warning {
  948. color: #ffffff;
  949. background-color: #ed9c28;
  950. border-color: #d58512;
  951. }
  952. .btn-warning:active,
  953. .btn-warning.active,
  954. .open .dropdown-toggle.btn-warning {
  955. background-image: none;
  956. }
  957. .btn-warning.disabled,
  958. .btn-warning[disabled],
  959. fieldset[disabled] .btn-warning,
  960. .btn-warning.disabled:hover,
  961. .btn-warning[disabled]:hover,
  962. fieldset[disabled] .btn-warning:hover,
  963. .btn-warning.disabled:focus,
  964. .btn-warning[disabled]:focus,
  965. fieldset[disabled] .btn-warning:focus,
  966. .btn-warning.disabled:active,
  967. .btn-warning[disabled]:active,
  968. fieldset[disabled] .btn-warning:active,
  969. .btn-warning.disabled.active,
  970. .btn-warning[disabled].active,
  971. fieldset[disabled] .btn-warning.active {
  972. background-color: #f0ad4e;
  973. border-color: #eea236;
  974. }
  975. .btn-warning .badge {
  976. color: #f0ad4e;
  977. background-color: #ffffff;
  978. }
  979. .btn-danger {
  980. color: #ffffff;
  981. background-color: #d9534f;
  982. border-color: #d43f3a;
  983. }
  984. .btn-danger:hover,
  985. .btn-danger:focus,
  986. .btn-danger:active,
  987. .btn-danger.active,
  988. .open .dropdown-toggle.btn-danger {
  989. color: #ffffff;
  990. background-color: #d2322d;
  991. border-color: #ac2925;
  992. }
  993. .btn-danger:active,
  994. .btn-danger.active,
  995. .open .dropdown-toggle.btn-danger {
  996. background-image: none;
  997. }
  998. .btn-danger.disabled,
  999. .btn-danger[disabled],
  1000. fieldset[disabled] .btn-danger,
  1001. .btn-danger.disabled:hover,
  1002. .btn-danger[disabled]:hover,
  1003. fieldset[disabled] .btn-danger:hover,
  1004. .btn-danger.disabled:focus,
  1005. .btn-danger[disabled]:focus,
  1006. fieldset[disabled] .btn-danger:focus,
  1007. .btn-danger.disabled:active,
  1008. .btn-danger[disabled]:active,
  1009. fieldset[disabled] .btn-danger:active,
  1010. .btn-danger.disabled.active,
  1011. .btn-danger[disabled].active,
  1012. fieldset[disabled] .btn-danger.active {
  1013. background-color: #d9534f;
  1014. border-color: #d43f3a;
  1015. }
  1016. .btn-danger .badge {
  1017. color: #d9534f;
  1018. background-color: #ffffff;
  1019. }
  1020. .btn-link {
  1021. color: #428bca;
  1022. font-weight: normal;
  1023. cursor: pointer;
  1024. border-radius: 0;
  1025. }
  1026. .btn-link,
  1027. .btn-link:active,
  1028. .btn-link[disabled],
  1029. fieldset[disabled] .btn-link {
  1030. background-color: transparent;
  1031. -webkit-box-shadow: none;
  1032. box-shadow: none;
  1033. }
  1034. .btn-link,
  1035. .btn-link:hover,
  1036. .btn-link:focus,
  1037. .btn-link:active {
  1038. border-color: transparent;
  1039. }
  1040. .btn-link:hover,
  1041. .btn-link:focus {
  1042. color: #2a6496;
  1043. text-decoration: underline;
  1044. background-color: transparent;
  1045. }
  1046. .btn-link[disabled]:hover,
  1047. fieldset[disabled] .btn-link:hover,
  1048. .btn-link[disabled]:focus,
  1049. fieldset[disabled] .btn-link:focus {
  1050. color: #999999;
  1051. text-decoration: none;
  1052. }
  1053. .btn-lg {
  1054. padding: 10px 16px;
  1055. font-size: 18px;
  1056. line-height: 1.33;
  1057. border-radius: 6px;
  1058. }
  1059. .btn-sm {
  1060. padding: 5px 10px;
  1061. font-size: 12px;
  1062. line-height: 1.5;
  1063. border-radius: 3px;
  1064. }
  1065. .btn-xs {
  1066. padding: 1px 5px;
  1067. font-size: 12px;
  1068. line-height: 1.5;
  1069. border-radius: 3px;
  1070. }
  1071. .btn-block {
  1072. display: block;
  1073. width: 100%;
  1074. padding-left: 0;
  1075. padding-right: 0;
  1076. }
  1077. .btn-block + .btn-block {
  1078. margin-top: 5px;
  1079. }
  1080. input[type="submit"].btn-block,
  1081. input[type="reset"].btn-block,
  1082. input[type="button"].btn-block {
  1083. width: 100%;
  1084. }
  1085. .alert {
  1086. padding: 15px;
  1087. margin-bottom: 20px;
  1088. border: 1px solid transparent;
  1089. border-radius: 4px;
  1090. }
  1091. .alert h4 {
  1092. margin-top: 0;
  1093. color: inherit;
  1094. }
  1095. .alert .alert-link {
  1096. font-weight: bold;
  1097. }
  1098. .alert > p,
  1099. .alert > ul {
  1100. margin-bottom: 0;
  1101. }
  1102. .alert > p + p {
  1103. margin-top: 5px;
  1104. }
  1105. .alert-dismissable {
  1106. padding-right: 35px;
  1107. }
  1108. .alert-dismissable .close {
  1109. position: relative;
  1110. top: -2px;
  1111. right: -21px;
  1112. color: inherit;
  1113. }
  1114. .alert-success {
  1115. background-color: #dff0d8;
  1116. border-color: #d6e9c6;
  1117. color: #3c763d;
  1118. }
  1119. .alert-success hr {
  1120. border-top-color: #c9e2b3;
  1121. }
  1122. .alert-success .alert-link {
  1123. color: #2b542c;
  1124. }
  1125. .alert-info {
  1126. background-color: #d9edf7;
  1127. border-color: #bce8f1;
  1128. color: #31708f;
  1129. }
  1130. .alert-info hr {
  1131. border-top-color: #a6e1ec;
  1132. }
  1133. .alert-info .alert-link {
  1134. color: #245269;
  1135. }
  1136. .alert-warning {
  1137. background-color: #fcf8e3;
  1138. border-color: #faebcc;
  1139. color: #8a6d3b;
  1140. }
  1141. .alert-warning hr {
  1142. border-top-color: #f7e1b5;
  1143. }
  1144. .alert-warning .alert-link {
  1145. color: #66512c;
  1146. }
  1147. .alert-danger {
  1148. background-color: #f2dede;
  1149. border-color: #ebccd1;
  1150. color: #a94442;
  1151. }
  1152. .alert-danger hr {
  1153. border-top-color: #e4b9c0;
  1154. }
  1155. .alert-danger .alert-link {
  1156. color: #843534;
  1157. }
  1158. .thumbnail {
  1159. display: block;
  1160. padding: 4px;
  1161. margin-bottom: 20px;
  1162. line-height: 1.42857143;
  1163. background-color: #ffffff;
  1164. border: 1px solid #dddddd;
  1165. border-radius: 4px;
  1166. -webkit-transition: all 0.2s ease-in-out;
  1167. transition: all 0.2s ease-in-out;
  1168. }
  1169. .thumbnail > img,
  1170. .thumbnail a > img {
  1171. margin-left: auto;
  1172. margin-right: auto;
  1173. }
  1174. a.thumbnail:hover,
  1175. a.thumbnail:focus,
  1176. a.thumbnail.active {
  1177. border-color: #428bca;
  1178. }
  1179. .thumbnail .caption {
  1180. padding: 9px;
  1181. color: #333333;
  1182. }
  1183. .clearfix:before,
  1184. .clearfix:after {
  1185. content: " ";
  1186. display: table;
  1187. }
  1188. .clearfix:after {
  1189. clear: both;
  1190. }
  1191. .center-block {
  1192. display: block;
  1193. margin-left: auto;
  1194. margin-right: auto;
  1195. }
  1196. .pull-right {
  1197. float: right !important;
  1198. }
  1199. .pull-left {
  1200. float: left !important;
  1201. }
  1202. .hide {
  1203. display: none !important;
  1204. }
  1205. .show {
  1206. display: block !important;
  1207. }
  1208. .invisible {
  1209. visibility: hidden;
  1210. }
  1211. .text-hide {
  1212. font: 0/0 a;
  1213. color: transparent;
  1214. text-shadow: none;
  1215. background-color: transparent;
  1216. border: 0;
  1217. }
  1218. .hidden {
  1219. display: none !important;
  1220. visibility: hidden !important;
  1221. }
  1222. .affix {
  1223. position: fixed;
  1224. }
  1225. body {
  1226. margin: 8px;
  1227. }
  1228. .container .moodleSkin img.mceIcon {
  1229. display: block;
  1230. height: auto;
  1231. width: auto;
  1232. }
  1233. .container .moodleSkin img.mceIcon {
  1234. display: block;
  1235. height: auto;
  1236. width: auto;
  1237. }
  1238. /*# sourceMappingURL=/theme/bootstrap/sourcemap-editor.json */