common.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  1. /* Layout */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. html {
  8. -webkit-text-size-adjust: 100%;
  9. -ms-text-size-adjust: 100%;
  10. }
  11. body {
  12. font-family: var(--font-family);
  13. text-rendering: optimizeLegibility;
  14. color: var(--body-color);
  15. background: var(--body-background);
  16. }
  17. hr {
  18. border: 0;
  19. height: 0;
  20. border-top: 1px dotted var(--hr-border-color);
  21. padding-bottom: 10px;
  22. }
  23. h1, h2, h3 {
  24. color: var(--title-color);
  25. }
  26. main {
  27. padding-left: 5px;
  28. padding-right: 5px;
  29. margin-bottom: 30px;
  30. }
  31. a {
  32. color: var(--link-color);
  33. }
  34. a:focus {
  35. outline: 0;
  36. color: var(--link-focus-color);
  37. text-decoration: none;
  38. outline: 1px dotted #aaa;
  39. }
  40. a:hover {
  41. color: var(--link-hover-color);
  42. text-decoration: none;
  43. }
  44. /* Header and main menu */
  45. .header {
  46. margin-top: 10px;
  47. margin-bottom: 20px;
  48. }
  49. .header nav ul {
  50. display: none;
  51. }
  52. .header li {
  53. cursor: pointer;
  54. padding-left: 10px;
  55. line-height: 2.1em;
  56. font-size: 1.2em;
  57. border-bottom: 1px dotted var(--header-list-border-color);
  58. }
  59. .header li:hover a {
  60. color: #888;
  61. }
  62. .header a {
  63. font-size: 0.9em;
  64. color: var(--header-link-color);
  65. text-decoration: none;
  66. border: none;
  67. font-weight: 400;
  68. }
  69. .header .active a {
  70. color: var(--header-active-link-color);
  71. font-weight: 500;
  72. }
  73. .header a:hover {
  74. color: var(--header-link-hover-color);
  75. }
  76. .header a:focus {
  77. color: var(--header-link-focus-color);
  78. }
  79. /* Page header and footer*/
  80. .page-header {
  81. margin-bottom: 25px;
  82. }
  83. .page-footer {
  84. margin-bottom: 10px;
  85. }
  86. .page-header h1 {
  87. font-weight: 500;
  88. border-bottom: 1px dotted var(--page-header-title-border-color);
  89. }
  90. .page-header h1 a {
  91. text-decoration: none;
  92. color: var(--page-header-title-color);
  93. }
  94. .page-header h1 a:hover,
  95. .page-header h1 a:focus {
  96. color: #666;
  97. }
  98. .page-header ul,
  99. .page-footer ul {
  100. margin-left: 25px;
  101. }
  102. .page-header li,
  103. .page-footer li {
  104. list-style-type: circle;
  105. line-height: 1.8em;
  106. }
  107. /* Logo */
  108. .logo {
  109. cursor: pointer;
  110. text-align: center;
  111. }
  112. .logo a {
  113. color: var(--logo-color);
  114. letter-spacing: 1px;
  115. }
  116. .logo a:hover {
  117. color: #339966;
  118. }
  119. .logo a span {
  120. color: #339966;
  121. }
  122. .logo a:hover span {
  123. color: var(--logo-hover-color-span);
  124. }
  125. /* Search form */
  126. .search {
  127. text-align: center;
  128. display: none;
  129. }
  130. .search-toggle-switch {
  131. display: none;
  132. }
  133. /* PWA prompt */
  134. #prompt-home-screen {
  135. display: none;
  136. position: fixed;
  137. bottom: 0;
  138. right: 0;
  139. width: 100%;
  140. text-align: center;
  141. background: #000;
  142. opacity: 85%;
  143. }
  144. #btn-add-to-home-screen {
  145. text-decoration: none;
  146. line-height: 30px;
  147. color: #fff;
  148. }
  149. #btn-add-to-home-screen:hover {
  150. color: red;
  151. }
  152. /* Notification - "Toast" */
  153. .toast-wrap {
  154. visibility: hidden;
  155. opacity: 0;
  156. position: fixed;
  157. left: 0;
  158. bottom: 10%;
  159. color: #fff;
  160. width: 100%;
  161. text-align: center;
  162. }
  163. .toast-msg {
  164. background-color: rgba(0,0,0,0.7);
  165. padding: 2px 5px;
  166. border-radius: 5px;
  167. }
  168. .toastAnimate {
  169. animation: toastKeyFrames 2s;
  170. }
  171. @keyframes toastKeyFrames {
  172. 0% {visibility: hidden; opacity: 0;}
  173. 25% {visibility: visible; opacity: 1; z-index: 9999}
  174. 50% {visibility: visible; opacity: 1; z-index: 9999}
  175. 75% {visibility: visible; opacity: 1; z-index: 9999}
  176. 100% {visibility: hidden; opacity: 0; z-index: 0}
  177. }
  178. @media (min-width: 600px) {
  179. body {
  180. margin: auto;
  181. max-width: 750px;
  182. }
  183. .header {
  184. margin-bottom: 0;
  185. }
  186. .logo {
  187. text-align: left;
  188. float: left;
  189. margin-right: 15px;
  190. margin-left: 5px;
  191. }
  192. .header nav ul {
  193. display: block;
  194. }
  195. .header li {
  196. display: inline;
  197. padding: 0;
  198. padding-right: 15px;
  199. line-height: normal;
  200. border: none;
  201. font-size: 1.0em;
  202. }
  203. .page-header ul,
  204. .page-footer ul {
  205. margin-left: 0;
  206. }
  207. .page-header li,
  208. .page-footer li {
  209. display: inline;
  210. padding-right: 15px;
  211. }
  212. /* Search form */
  213. .search {
  214. text-align: right;
  215. display: block;
  216. margin-top: 10px;
  217. margin-right: 5px;
  218. }
  219. .search-toggle-switch {
  220. display: block;
  221. }
  222. .search-form {
  223. display: none;
  224. }
  225. .search-toggle-switch.has-search-query {
  226. display: none;
  227. }
  228. .search-form.has-search-query {
  229. display: block;
  230. }
  231. }
  232. /* Tables */
  233. table {
  234. width: 100%;
  235. border-collapse: collapse;
  236. }
  237. table, th, td {
  238. border: 1px solid var(--table-border-color);
  239. }
  240. th, td {
  241. padding: 5px;
  242. text-align: left;
  243. }
  244. td {
  245. vertical-align: top;
  246. }
  247. th {
  248. background: var(--table-th-background);
  249. color: var(--table-th-color);
  250. font-weight: 400;
  251. }
  252. tr:hover {
  253. color: var(--table-tr-hover-color);
  254. background-color: var(--table-tr-hover-background-color);
  255. }
  256. .column-40 {
  257. width: 40%;
  258. }
  259. .column-25 {
  260. width: 25%;
  261. }
  262. .column-20 {
  263. width: 20%;
  264. }
  265. /* Forms */
  266. fieldset {
  267. border: 1px solid #ddd;
  268. padding: 8px;
  269. }
  270. legend {
  271. font-weight: 500;
  272. padding-left: 3px;
  273. padding-right: 3px;
  274. }
  275. label {
  276. cursor: pointer;
  277. display: block;
  278. }
  279. .radio-group {
  280. line-height: 1.9em;
  281. }
  282. div.radio-group label {
  283. display: inline-block;
  284. }
  285. select {
  286. margin-bottom: 15px;
  287. }
  288. input[type="search"],
  289. input[type="url"],
  290. input[type="password"],
  291. input[type="text"] {
  292. color: var(--input-color);
  293. background: var(--input-background);
  294. border: var(--input-border);
  295. padding: 3px;
  296. line-height: 20px;
  297. width: 250px;
  298. font-size: 99%;
  299. margin-bottom: 10px;
  300. margin-top: 5px;
  301. -webkit-appearance: none;
  302. }
  303. input[type="search"]:focus,
  304. input[type="url"]:focus,
  305. input[type="password"]:focus,
  306. input[type="text"]:focus {
  307. color: var(--input-focus-color);
  308. border-color: var(--input-focus-border-color);
  309. outline: 0;
  310. box-shadow: var(--input-focus-box-shadow);
  311. }
  312. input[type="checkbox"] {
  313. margin-bottom: 15px;
  314. }
  315. textarea {
  316. width: 350px;
  317. color: var(--input-color);
  318. background: var(--input-background);
  319. border: var(--input-border);
  320. padding: 3px;
  321. margin-bottom: 10px;
  322. margin-top: 5px;
  323. -webkit-appearance: none;
  324. }
  325. textarea:focus {
  326. color: var(--input-focus-color);
  327. border-color: var(--input-focus-border-color);
  328. outline: 0;
  329. box-shadow: var(--input-focus-box-shadow);
  330. }
  331. ::-moz-placeholder,
  332. ::-ms-input-placeholder,
  333. ::-webkit-input-placeholder {
  334. color: #ddd;
  335. padding-top: 2px;
  336. }
  337. .form-help {
  338. font-size: 0.9em;
  339. color: brown;
  340. margin-bottom: 15px;
  341. }
  342. .form-section {
  343. border-left: 2px dotted #ddd;
  344. padding-left: 20px;
  345. margin-left: 10px;
  346. }
  347. details > summary {
  348. outline: none;
  349. cursor: pointer;
  350. }
  351. .details-content {
  352. margin-top: 15px;
  353. }
  354. /* Buttons */
  355. a.button {
  356. text-decoration: none;
  357. }
  358. .button {
  359. display: inline-block;
  360. -webkit-appearance: none;
  361. -moz-appearance: none;
  362. font-size: 1.1em;
  363. cursor: pointer;
  364. padding: 3px 10px;
  365. border: 1px solid;
  366. border-radius: unset;
  367. }
  368. .button-primary {
  369. border-color: var(--button-primary-border-color);
  370. background: var(--button-primary-background);
  371. color: var(--button-primary-color);
  372. }
  373. .button-primary:hover,
  374. .button-primary:focus {
  375. border-color: var(--button-primary-focus-border-color);
  376. background: var(--button-primary-focus-background);
  377. }
  378. .button-danger {
  379. border-color: #b0281a;
  380. background: #d14836;
  381. color: #fff;
  382. }
  383. .button-danger:hover,
  384. .button-danger:focus {
  385. color: #fff;
  386. background: #c53727;
  387. }
  388. .button:disabled {
  389. color: #ccc;
  390. background: #f7f7f7;
  391. border-color: #ccc;
  392. }
  393. .buttons {
  394. margin-top: 10px;
  395. margin-bottom: 20px;
  396. }
  397. /* Alerts */
  398. .alert {
  399. padding: 8px 35px 8px 14px;
  400. margin-bottom: 20px;
  401. color: var(--alert-color);
  402. background-color: var(--alert-background-color);
  403. border: 1px solid var(--alert-border-color);
  404. border-radius: 4px;
  405. overflow: auto;
  406. }
  407. .alert h3 {
  408. margin-top: 0;
  409. margin-bottom: 15px;
  410. }
  411. .alert-success {
  412. color: var(--alert-success-color);
  413. background-color: var(--alert-success-background-color);
  414. border-color: var(--alert-success-border-color);
  415. }
  416. .alert-error {
  417. color: var(--alert-error-color);
  418. background-color: var(--alert-error-background-color);
  419. border-color: var(--alert-error-border-color);
  420. }
  421. .alert-error h3,
  422. .alert-error a {
  423. color: var(--alert-error-color);
  424. }
  425. .alert-info {
  426. color: var(--alert-info-color);
  427. background-color: var(--alert-info-background-color);
  428. border-color: var(--alert-info-border-color);
  429. }
  430. /* Panel */
  431. .panel {
  432. color: var(--panel-color);
  433. background-color: var(--panel-background);
  434. border: 1px solid var(--panel-border-color);
  435. border-radius: 5px;
  436. padding: 10px;
  437. margin-bottom: 15px;
  438. }
  439. .panel h3 {
  440. font-weight: 500;
  441. margin-top: 0;
  442. margin-bottom: 20px;
  443. }
  444. .panel ul {
  445. margin-left: 30px;
  446. }
  447. /* Modals */
  448. #modal-left {
  449. position: fixed;
  450. top: 0;
  451. left: 0;
  452. bottom: 0;
  453. width: 380px;
  454. overflow: auto;
  455. color: var(--modal-color);
  456. background: var(--modal-background);
  457. box-shadow: var(--modal-box-shadow);
  458. padding: 5px;
  459. padding-top: 30px;
  460. }
  461. #modal-left h3 {
  462. font-weight: 400;
  463. margin: 0;
  464. }
  465. .btn-close-modal {
  466. position: absolute;
  467. top: 0;
  468. right: 0;
  469. font-size: 1.7em;
  470. color: #ccc;
  471. padding:0 .2em;
  472. margin: 10px;
  473. text-decoration: none;
  474. }
  475. .btn-close-modal:hover {
  476. color: #999;
  477. }
  478. /* Keyboard Shortcuts */
  479. .keyboard-shortcuts li {
  480. margin-left: 25px;
  481. list-style-type: square;
  482. color: var(--keyboard-shortcuts-li-color);
  483. font-size: 0.95em;
  484. line-height: 1.45em;
  485. }
  486. .keyboard-shortcuts p {
  487. line-height: 1.9em;
  488. }
  489. /* Login form */
  490. .login-form {
  491. margin: 50px auto 0;
  492. max-width: 280px;
  493. }
  494. /* Counters */
  495. .unread-counter-wrapper,
  496. .error-feeds-counter-wrapper {
  497. font-size: 0.9em;
  498. font-weight: 300;
  499. color: var(--counter-color);
  500. }
  501. /* Category label */
  502. .category {
  503. font-size: 0.75em;
  504. background-color: var(--category-background-color);
  505. border: 1px solid var(--category-border-color);
  506. border-radius: 5px;
  507. margin-left: 0.25em;
  508. padding: 1px 0.4em 1px 0.4em;
  509. white-space: nowrap;
  510. color: var(--category-color);
  511. }
  512. .category a {
  513. color: var(--category-link-color);
  514. text-decoration: none;
  515. }
  516. .category a:hover,
  517. .category a:focus {
  518. color: var(--category-link-hover-color);
  519. }
  520. /* Pagination */
  521. .pagination {
  522. font-size: 1.1em;
  523. display: flex;
  524. align-items: center;
  525. padding-top: 8px;
  526. }
  527. .pagination-bottom {
  528. border-top: 1px dotted var(--pagination-border-color);
  529. margin-bottom: 15px;
  530. margin-top: 50px;
  531. }
  532. .pagination > div {
  533. flex: 1;
  534. }
  535. .pagination-next {
  536. text-align: right;
  537. }
  538. .pagination-prev:before {
  539. content: "« ";
  540. }
  541. .pagination-next:after {
  542. content: " »";
  543. }
  544. .pagination a {
  545. color: var(--pagination-color);
  546. }
  547. .pagination a:hover,
  548. .pagination a:focus {
  549. text-decoration: none;
  550. }
  551. /* List view */
  552. .item {
  553. border: 1px dotted var(--item-border-color);
  554. margin-bottom: 20px;
  555. padding: var(--item-padding);
  556. overflow: hidden;
  557. }
  558. .item.current-item {
  559. border: var(--current-item-border-width) solid var(--current-item-border-color);
  560. padding: 3px;
  561. box-shadow: var(--current-item-box-shadow);
  562. }
  563. .item-title a {
  564. text-decoration: none;
  565. font-weight: var(--item-title-link-font-weight);
  566. }
  567. .item-status-read .item-title a {
  568. color: var(--item-status-read-title-link-color);
  569. }
  570. .item-meta {
  571. display: flex;
  572. flex-flow: row wrap;
  573. justify-content: space-between;
  574. color: var(--item-meta-focus-color);
  575. font-size: 0.8em;
  576. }
  577. .item-meta a {
  578. color: #777;
  579. text-decoration: none;
  580. }
  581. .item-meta a:hover,
  582. .item-meta a:focus {
  583. color: #333;
  584. }
  585. .item-meta ul {
  586. margin-top: 5px;
  587. }
  588. .item-meta ul:last-child {
  589. margin-left: auto;
  590. }
  591. .item-meta li {
  592. display: inline;
  593. }
  594. .item-meta-info li:after {
  595. content: "|";
  596. color: var(--item-meta-li-color);
  597. }
  598. .item-meta-info li:last-child:after {
  599. content: "";
  600. }
  601. .item-meta-icons li {
  602. margin-right: 5px;
  603. }
  604. .item-meta-icons li:last-child {
  605. margin-right: 0;
  606. }
  607. .items {
  608. overflow-x: hidden;
  609. }
  610. .hide-read-items .item-status-read:not(.current-item) {
  611. display: none;
  612. }
  613. /* Feeds list */
  614. article.feed-parsing-error {
  615. background-color: var(--feed-parsing-error-background-color);
  616. border-color: #aaa;
  617. }
  618. .parsing-error {
  619. font-size: 0.85em;
  620. margin-top: 2px;
  621. color: var(--parsing-error-color);
  622. }
  623. .parsing-error-count {
  624. cursor: pointer;
  625. }
  626. /* Icons */
  627. .icon,
  628. .icon-label {
  629. vertical-align: middle;
  630. display: inline-block;
  631. }
  632. .icon {
  633. width: 16px;
  634. height: 16px;
  635. }
  636. /* Entry view */
  637. .entry header {
  638. padding-bottom: 5px;
  639. border-bottom: 1px dotted var(--entry-header-border-color);
  640. }
  641. .entry header h1 {
  642. font-size: 2.0em;
  643. line-height: 1.25em;
  644. margin: 5px 0 30px 0;
  645. }
  646. .entry header h1 a {
  647. text-decoration: none;
  648. color: var(--entry-header-title-link-color);
  649. }
  650. .entry header h1 a:hover,
  651. .entry header h1 a:focus {
  652. color: #666;
  653. }
  654. .entry-actions {
  655. margin-bottom: 20px;
  656. }
  657. .entry-actions a {
  658. text-decoration: none;
  659. }
  660. .entry-actions li {
  661. display: inline-block;
  662. margin-right: 15px;
  663. }
  664. .entry-meta {
  665. font-size: 0.95em;
  666. margin: 0 0 20px;
  667. color: #666;
  668. overflow-wrap: break-word;
  669. }
  670. .entry-website img {
  671. vertical-align: top;
  672. }
  673. .entry-website a {
  674. color: #666;
  675. vertical-align: top;
  676. text-decoration: none;
  677. }
  678. .entry-website a:hover,
  679. .entry-website a:focus {
  680. text-decoration: underline;
  681. }
  682. .entry-date {
  683. font-size: 0.65em;
  684. font-style: italic;
  685. color: #555;
  686. }
  687. .entry-content {
  688. padding-top: 15px;
  689. font-size: 1.2em;
  690. font-weight: 300;
  691. font-family: var(--entry-content-font-family);
  692. color: var(--entry-content-color);
  693. line-height: 1.4em;
  694. overflow-wrap: break-word;
  695. }
  696. .entry-content h1, h2, h3, h4, h5, h6 {
  697. margin-top: 15px;
  698. margin-bottom: 10px;
  699. }
  700. .entry-content iframe,
  701. .entry-content video,
  702. .entry-content img {
  703. max-width: 100%;
  704. }
  705. .entry-content figure {
  706. margin-top: 15px;
  707. margin-bottom: 15px;
  708. }
  709. .entry-content figure img {
  710. border: 1px solid #000;
  711. }
  712. .entry-content figcaption {
  713. font-size: 0.75em;
  714. text-transform: uppercase;
  715. color: #777;
  716. }
  717. .entry-content p {
  718. margin-top: 10px;
  719. margin-bottom: 15px;
  720. }
  721. .entry-content a {
  722. overflow-wrap: break-word;
  723. }
  724. .entry-content a:visited {
  725. color: purple;
  726. }
  727. .entry-content dt {
  728. font-weight: 500;
  729. margin-top: 15px;
  730. color: #555;
  731. }
  732. .entry-content dd {
  733. margin-left: 15px;
  734. margin-top: 5px;
  735. padding-left: 20px;
  736. border-left: 3px solid #ddd;
  737. color: #777;
  738. font-weight: 300;
  739. line-height: 1.4em;
  740. }
  741. .entry-content blockquote {
  742. border-left: 4px solid #ddd;
  743. padding-left: 25px;
  744. margin-left: 20px;
  745. margin-top: 20px;
  746. margin-bottom: 20px;
  747. line-height: 1.4em;
  748. font-family: var(--entry-content-quote-font-family);
  749. }
  750. .entry-content q {
  751. color: var(--entry-content-quote-color);
  752. font-family: var(--entry-content-quote-font-family);
  753. font-style: italic;
  754. }
  755. .entry-content q:before {
  756. content: "“";
  757. }
  758. .entry-content q:after {
  759. content: "”";
  760. }
  761. .entry-content pre {
  762. padding: 5px;
  763. overflow: auto;
  764. overflow-wrap: initial;
  765. border-width: 1px;
  766. border-style: solid;
  767. }
  768. .entry-content pre,
  769. .entry-content code {
  770. color: var(--entry-content-code-color);
  771. background: var(--entry-content-code-background);
  772. border-color: var(--entry-content-code-border-color);
  773. }
  774. .entry-content table {
  775. max-width: 100%;
  776. }
  777. .entry-content ul,
  778. .entry-content ol {
  779. margin-left: 30px;
  780. margin-top: 15px;
  781. margin-bottom: 15px;
  782. }
  783. .entry-content li ul,
  784. .entry-content li ol {
  785. margin-top: 0;
  786. margin-bottom: 0;
  787. }
  788. .entry-content ul {
  789. list-style-type: square;
  790. }
  791. .entry-content strong {
  792. font-weight: 600;
  793. }
  794. details.entry-enclosures {
  795. margin-top: 25px;
  796. }
  797. .entry-enclosures summary {
  798. font-weight: 500;
  799. font-size: 1.2em;
  800. }
  801. .entry-enclosure {
  802. border: 1px dotted var(--entry-enclosure-border-color);
  803. padding: 5px;
  804. margin-top: 10px;
  805. max-width: 100%;
  806. }
  807. .entry-enclosure-download {
  808. font-size: 0.85em;
  809. overflow-wrap: break-word;
  810. }
  811. .enclosure-video video,
  812. .enclosure-image img {
  813. max-width: 100%;
  814. }
  815. /* Confirmation */
  816. .confirm {
  817. font-weight: 500;
  818. color: #ed2d04;
  819. }
  820. .confirm a {
  821. color: #ed2d04;
  822. }
  823. .loading {
  824. font-style: italic;
  825. }
  826. /* Bookmarlet */
  827. .bookmarklet {
  828. border: 1px dashed #ccc;
  829. border-radius: 5px;
  830. padding: 15px;
  831. margin: 15px;
  832. text-align: center;
  833. }
  834. .bookmarklet a {
  835. font-weight: 600;
  836. text-decoration: none;
  837. font-size: 1.2em;
  838. }