freshrss.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  1. @charset "UTF-8";
  2. /* STRUCTURE */
  3. .header {
  4. display: table;
  5. width: 100%;
  6. background: #1c1c1c;
  7. table-layout: fixed;
  8. }
  9. .header > .item {
  10. display: table-cell;
  11. padding: 10px 0;
  12. border-bottom: 1px solid #2f2f2f;
  13. vertical-align: middle;
  14. text-align: center;
  15. }
  16. .header > .item.title {
  17. width: 250px;
  18. white-space: nowrap;
  19. }
  20. .logo {
  21. display: inline-block;
  22. font-size: 48px;
  23. height: 32px;
  24. width: 32px;
  25. padding: 10px;
  26. }
  27. .header > .item.title h1 {
  28. display: inline-block;
  29. margin: 0;
  30. }
  31. .header > .item.search input {
  32. width: 230px;
  33. transition: width 200ms linear;
  34. }
  35. .header .item.search input:focus {
  36. width: 330px;
  37. }
  38. .header > .item.configure {
  39. width: 100px;
  40. }
  41. .item a:hover {
  42. text-decoration: none;
  43. }
  44. #global {
  45. display: table;
  46. width: 100%;
  47. height: 100%;
  48. background: #1c1c1c;
  49. table-layout: fixed;
  50. }
  51. .aside {
  52. display: table-cell;
  53. height: 100%;
  54. width: 250px;
  55. vertical-align: top;
  56. border-right: 1px solid #2f2f2f;
  57. background: #1c1c1c;
  58. }
  59. .aside .nav-form input {
  60. width: 180px;
  61. }
  62. .aside.aside_flux {
  63. padding: 10px 0 40px;
  64. }
  65. .aside.aside_feed .nav-form input {
  66. width: 140px;
  67. }
  68. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  69. right: -20px;
  70. }
  71. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  72. right: 33px;
  73. }
  74. .nav-login {
  75. display: none;
  76. }
  77. .nav_menu {
  78. width: 100%;
  79. background: #1c1c1c;
  80. border-bottom: 1px solid #2f2f2f;
  81. text-align: center;
  82. padding: 5px 0;
  83. }
  84. .nav_menu .search {
  85. display:none;
  86. }
  87. .favicon {
  88. height: 16px;
  89. width: 16px;
  90. }
  91. .categories {
  92. margin: 0;
  93. padding: 0;
  94. text-align: center;
  95. list-style: none;
  96. }
  97. .category {
  98. display: block;
  99. width: 220px;
  100. margin: 10px auto;
  101. text-align: left;
  102. overflow: hidden;
  103. white-space: nowrap;
  104. text-overflow: ellipsis;
  105. }
  106. .category .btn:first-child {
  107. width: 195px;
  108. position: relative;
  109. }
  110. .category.stick .btn:first-child {
  111. width:160px;
  112. }
  113. .category .btn:first-child:not([data-unread="0"]):after {
  114. content: attr(data-unread);
  115. position: absolute;
  116. top: 3px; right: 3px;
  117. padding: 1px 5px;
  118. background: #1a1a1a;
  119. color: #888;
  120. font-size: 90%;
  121. border: 1px solid #000;
  122. border-radius: 5px;
  123. }
  124. .category + .feeds:not(.active) {
  125. display:none;
  126. }
  127. .categories .feeds {
  128. width: 100%;
  129. margin: 0;
  130. list-style: none;
  131. }
  132. .categories .feeds .item.active {
  133. background: #26303F;
  134. }
  135. .categories .feeds .item.active .feed {
  136. color: #888;
  137. }
  138. .categories .feeds .item.empty .feed {
  139. color: #e67e22;
  140. }
  141. .categories .feeds .item.empty.active {
  142. background: #e67e22;
  143. }
  144. .categories .feeds .item.empty.active .feed {
  145. color: #fff;
  146. }
  147. .categories .feeds .item.error .feed {
  148. color: #BD362F;
  149. }
  150. .categories .feeds .item .feed {
  151. display: inline-block;
  152. margin: 0;
  153. width: 165px;
  154. line-height: 35px;
  155. font-size: 90%;
  156. vertical-align: middle;
  157. text-align: left;
  158. overflow: hidden;
  159. white-space: nowrap;
  160. text-overflow: ellipsis;
  161. }
  162. .feed:not([data-unread="0"]):before {
  163. content: "(" attr(data-unread) ") ";
  164. }
  165. .categories .feeds .dropdown-menu {
  166. left: 0;
  167. }
  168. .categories .feeds .dropdown-menu:after {
  169. left: 2px;
  170. }
  171. .categories .feeds .item .dropdown-toggle > .icon {
  172. visibility: hidden;
  173. cursor: pointer;
  174. }
  175. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  176. .categories .feeds .item:hover .dropdown-toggle > .icon,
  177. .categories .feeds .item.active .dropdown-toggle > .icon {
  178. background-color: #1c1c1c;
  179. border-radius: 3px;
  180. visibility: visible;
  181. }
  182. .post {
  183. padding: 10px 50px;
  184. }
  185. .post form {
  186. margin: 10px 0;
  187. }
  188. .day {
  189. min-height: 50px;
  190. padding: 0 10px;
  191. font-size: 130%;
  192. font-weight: bold;
  193. line-height: 50px;
  194. background: #1c1c1c;
  195. border-top: 1px solid #2f2f2f;
  196. border-bottom: 1px solid #2f2f2f;
  197. }
  198. .day:first-child {
  199. border-top: none;
  200. }
  201. .day .name {
  202. position: absolute;
  203. right: 0;
  204. width: 50%;
  205. height: 1.5em;
  206. padding: 0 10px 0 0;
  207. overflow: hidden;
  208. color: #aab;
  209. font-size: 1.8em;
  210. opacity: .3;
  211. text-shadow: 0px -1px 0px #333;
  212. font-style: italic;
  213. white-space: nowrap;
  214. text-overflow: ellipsis;
  215. text-align: right;
  216. }
  217. #new-article {
  218. display: none;
  219. min-height: 40px;
  220. background: #26303F;
  221. text-align: center;
  222. }
  223. #new-article:hover {
  224. background: #4A5D7A;
  225. }
  226. #new-article > a {
  227. display: block;
  228. line-height: 40px;
  229. color: #fff;
  230. font-weight: bold;
  231. }
  232. #new-article > a:hover {
  233. text-decoration: none;
  234. }
  235. .flux {
  236. border-left: 3px solid #2f2f2f;
  237. background: #1c1c1c;
  238. }
  239. .flux.not_read {
  240. border-left: 3px solid #FF5300;
  241. background: #1c1c1c;
  242. }
  243. .flux.favorite {
  244. border-left: 3px solid #FFC300;
  245. background: #1c1c1c;
  246. }
  247. .flux.current {
  248. border-left: 3px solid #0062BE;
  249. background: #1a1a1a;
  250. }
  251. .horizontal-list > .item:not(.title):not(.website) > a {
  252. display: block;
  253. }
  254. .flux_header {
  255. background: inherit;
  256. height: 25px;
  257. font-size: 12px;
  258. border-top: 1px solid #2f2f2f;
  259. cursor: pointer;
  260. }
  261. .flux .item {
  262. line-height: 40px;
  263. white-space: nowrap;
  264. }
  265. .flux_header > .item {
  266. overflow: hidden;
  267. text-overflow: ellipsis;
  268. }
  269. .flux .item.manage {
  270. width: 40px;
  271. text-align: center;
  272. }
  273. .flux .item.website {
  274. width: 200px;
  275. }
  276. .website .favicon {
  277. padding: 5px;
  278. }
  279. .flux .item.title {
  280. background: inherit;
  281. }
  282. .flux .item.title a {
  283. color: #888;
  284. outline: none;
  285. }
  286. .flux.not_read .item.title,
  287. .flux.current .item.title {
  288. font-weight: bold;
  289. }
  290. .flux .item.date {
  291. width: 145px;
  292. padding:0 5px 0 0;
  293. text-align: right;
  294. font-size: 10px;
  295. color: #666;
  296. }
  297. .link {
  298. width: 40px;
  299. text-align: center;
  300. }
  301. #stream.reader .flux {
  302. padding: 0 0 30px;
  303. border: none;
  304. background: #1c1c1c;
  305. color: #888;
  306. }
  307. #stream.reader .flux .author {
  308. margin: 0 0 10px;
  309. font-size: 90%;
  310. color: #666;
  311. }
  312. #stream.global {
  313. text-align: center;
  314. }
  315. #stream.global .box-category {
  316. display: inline-block;
  317. width: 280px;
  318. margin: 20px 10px;
  319. vertical-align: top;
  320. background: #1a1a1a;
  321. border: 1px solid #000;
  322. border-radius: 5px;
  323. text-align: left;
  324. box-shadow: 0 0 5px #2f2f2f;
  325. }
  326. #stream.global .category {
  327. width: 100%;
  328. margin: 0;
  329. }
  330. #stream.global .btn {
  331. display: block;
  332. width: auto;
  333. height: 35px;
  334. margin: 0;
  335. padding: 0 10px;
  336. background: #26303F;
  337. border: none;
  338. border-bottom: 1px solid #2f2f2f;
  339. border-radius: 5px 5px 0 0;
  340. line-height: 35px;
  341. font-size: 120%;
  342. }
  343. #stream.global .btn:not([data-unread="0"]) {
  344. font-weight:bold;
  345. }
  346. #stream.global .btn:first-child:not([data-unread="0"]):after {
  347. top: 0; right: 5px;
  348. border: 0;
  349. background: none;
  350. color: #666;
  351. font-weight: bold;
  352. box-shadow: none;
  353. }
  354. #stream.global .box-category .feeds {
  355. display: block;
  356. max-height: 250px;
  357. margin: 0;
  358. list-style: none;
  359. overflow: auto;
  360. }
  361. #stream.global .box-category .feeds .item {
  362. padding: 2px 10px;
  363. font-size: 90%;
  364. }
  365. #stream.global .box-category .feed {
  366. width: 220px;
  367. }
  368. .content {
  369. min-height: 150px;
  370. max-width: 550px;
  371. margin: 0 auto;
  372. padding: 20px 10px;
  373. line-height: 170%;
  374. word-wrap: break-word;
  375. }
  376. .content h1, .content h2, .content h3 {
  377. margin: 20px 0 5px;
  378. }
  379. .content > .title {
  380. font-size: x-large;
  381. margin: 0;
  382. }
  383. .content p {
  384. margin: 0 0 20px;
  385. }
  386. img.big {
  387. display: block;
  388. margin: 10px auto;
  389. }
  390. figure img.big {
  391. margin: 0;
  392. }
  393. .content hr {
  394. margin: 30px 0;
  395. height: 1px;
  396. background: #ddd;
  397. border: 0;
  398. }
  399. .content pre {
  400. margin: 10px auto;
  401. padding: 10px;
  402. overflow: auto;
  403. background: #000;
  404. color: #fff;
  405. font-size: 110%;
  406. }
  407. .content q, .content blockquote {
  408. display: block;
  409. margin: 5px 0;
  410. padding: 5px 20px;
  411. font-style: italic;
  412. border-left: 4px solid #ccc;
  413. color: #666;
  414. }
  415. .content blockquote p {
  416. margin: 0;
  417. }
  418. #panel {
  419. display: none;
  420. position: fixed;
  421. top: 10px; bottom: 10px;
  422. left: 100px; right: 100px;
  423. overflow: auto;
  424. background: #1c1c1c;
  425. border: 1px solid #95a5a6;
  426. border-radius: 5px;
  427. }
  428. #panel .close {
  429. position: fixed;
  430. top: 10px; right: 0;
  431. display: inline-block;
  432. width: 26px;
  433. height: 26px;
  434. margin: 0 10px 0 0;
  435. border: 1px solid #ccc;
  436. border-radius: 20px;
  437. text-align: center;
  438. line-height: 26px;
  439. background: #fff;
  440. }
  441. #overlay {
  442. display: none;
  443. position: fixed;
  444. top: 0; bottom: 0;
  445. left: 0; right: 0;
  446. background: rgba(0, 0, 0, 0.9);
  447. }
  448. .flux_content .bottom {
  449. font-size: 90%;
  450. text-align: center;
  451. }
  452. .hide_posts > :not(.active) > .flux_content {
  453. display:none;
  454. }
  455. /*** PAGINATION ***/
  456. .pagination {
  457. display: table;
  458. width: 100%;
  459. margin: 0;
  460. background: #1a1a1a;
  461. text-align: center;
  462. color: #888;
  463. font-size: 80%;
  464. line-height: 200%;
  465. table-layout: fixed;
  466. }
  467. .pagination .item {
  468. display: table-cell;
  469. line-height: 40px;
  470. }
  471. .pagination .item.pager-current {
  472. font-weight: bold;
  473. font-size: 140%;
  474. }
  475. .pagination .pager-first,
  476. .pagination .pager-previous,
  477. .pagination .pager-next,
  478. .pagination .pager-last {
  479. width: 100px;
  480. }
  481. .pagination .item a {
  482. display: block;
  483. color: #333;
  484. font-style: italic;
  485. }
  486. .pagination:first-child .item {
  487. border-bottom: 1px solid #aaa;
  488. }
  489. .pagination:last-child .item {
  490. border-top: 1px solid #aaa;
  491. }
  492. #nav_entries {
  493. display: table;
  494. width: 250px;
  495. height: 40px;
  496. position: fixed;
  497. bottom: 0;
  498. left: 0;
  499. margin: 0;
  500. background: #1c1c1c;
  501. border-top: 1px solid #2f2f2f;
  502. text-align: center;
  503. line-height: 40px;
  504. table-layout: fixed;
  505. }
  506. #nav_entries .item {
  507. display: table-cell;
  508. width: 30%;
  509. }
  510. #nav_entries a {
  511. display: block;
  512. }
  513. #nav_entries .i_up {
  514. margin: 5px 0 0;
  515. vertical-align: top;
  516. }
  517. .loading {
  518. background: url("loader.gif") center center no-repeat;
  519. font-size: 0;
  520. }
  521. #bigMarkAsRead {
  522. display: block;
  523. font-style: normal;
  524. padding: 32px 0 64px 0;
  525. text-align: center;
  526. text-decoration: none;
  527. }
  528. #bigMarkAsRead:hover {
  529. background: #1c1c1c;
  530. color: #888;
  531. }
  532. .bigTick {
  533. font-size: 72pt;
  534. line-height: 1.6em;
  535. }
  536. /*** NOTIFICATION ***/
  537. .notification {
  538. position: absolute;
  539. top: 10px;
  540. left: 25%; right: 25%;
  541. min-height: 30px;
  542. padding: 10px;
  543. line-height: 30px;
  544. text-align: center;
  545. border-radius: 5px;
  546. box-shadow: 0 0 5px #666;
  547. background: #1a1a1a;
  548. color: #888;
  549. font-weight: bold;
  550. z-index: 10;
  551. }
  552. .notification.good {
  553. border:1px solid #f4f899;
  554. }
  555. .notification.bad {
  556. border:1px solid #f4a899;
  557. }
  558. .notification a.close {
  559. display: inline-block;
  560. width: 16px;
  561. height: 16px;
  562. float: right;
  563. margin: -20px -20px 0 0;
  564. padding: 5px;
  565. background: #1a1a1a;
  566. border-radius: 50px;
  567. line-height: 16px;
  568. }
  569. .notification.good a.close{
  570. border:1px solid #f4f899;
  571. }
  572. .notification.bad a.close{
  573. border:1px solid #f4a899;
  574. }
  575. .toggle_aside, .btn.toggle_aside {
  576. display: none;
  577. }
  578. .actualizeProgress {
  579. position: fixed;
  580. top: 10px;
  581. left: 25%; right: 25%;
  582. padding: 5px;
  583. background: #1a1a1a;
  584. text-align: center;
  585. border: 1px solid #2f2f2f;
  586. border-radius: 5px;
  587. }
  588. .actualizeProgress progress {
  589. max-width: 100%;
  590. vertical-align: middle;
  591. }
  592. .actualizeProgress .progress {
  593. color: #888;
  594. font-size: 90%;
  595. vertical-align: middle;
  596. }
  597. .logs {
  598. border: 1px solid #aaa;
  599. }
  600. .log {
  601. padding: 5px 2%;
  602. overflow: auto;
  603. background: #fafafa;
  604. border-bottom: 1px solid #999;
  605. color: #333;
  606. font-size: 90%;
  607. }
  608. .log .date {
  609. display: block;
  610. }
  611. .log.error {
  612. background: #fdd;
  613. color: #844;
  614. }
  615. .log.warning {
  616. background: #ffe;
  617. color: #c95;
  618. }
  619. .log.notice {
  620. background: #f4f4f4;
  621. color: #aaa;
  622. }
  623. .log.debug {
  624. background: #111;
  625. color: #eee;
  626. }
  627. .form-group table {
  628. border-collapse:collapse;
  629. margin:10px 0 0 220px;
  630. text-align:center;
  631. }
  632. .form-group tr, .form-group th, .form-group td {
  633. border:1px solid #2f2f2f;
  634. font-weight:normal;
  635. padding:.5em;
  636. }
  637. select.number option {
  638. text-align:right;
  639. }
  640. @media(min-width: 841px) {
  641. .flux:not(.current):hover .item.title {
  642. max-width: calc(100% - 580px);
  643. padding-right: 1.5em;
  644. position: absolute;
  645. }
  646. }
  647. @media(max-width: 840px) {
  648. .header,
  649. .aside .btn-important,
  650. .aside .feeds .dropdown,
  651. .flux_header .item.website span,
  652. .item.date {
  653. display: none;
  654. }
  655. .flux_header .item.website {
  656. width: 40px;
  657. text-align: center;
  658. }
  659. .flux_header .item.website .favicon {
  660. padding: 12px;
  661. }
  662. .nav-login {
  663. display: block;
  664. }
  665. .pagination {
  666. margin: 0 0 40px;
  667. }
  668. .pagination .pager-previous, .pagination .pager-next {
  669. width: 100px;
  670. }
  671. .toggle_aside, .btn.toggle_aside {
  672. display: inline-block;
  673. }
  674. .aside {
  675. position: fixed;
  676. top: 0; left: 0;
  677. width: 0;
  678. overflow: hidden;
  679. border-right: none;
  680. z-index: 10;
  681. transition: width 200ms linear;
  682. }
  683. .aside.aside_flux {
  684. padding: 10px 0 0;
  685. }
  686. .aside:target {
  687. width: 80%;
  688. border-right: 1px solid #aaa;
  689. overflow: auto;
  690. }
  691. .aside .toggle_aside {
  692. position: absolute;
  693. right: 0;
  694. display: inline-block;
  695. width: 26px;
  696. height: 26px;
  697. margin: 0 10px 0 0;
  698. border: 1px solid #ccc;
  699. border-radius: 20px;
  700. text-align: center;
  701. line-height: 26px;
  702. }
  703. .aside .categories {
  704. margin: 30px 0;
  705. }
  706. #nav_entries {
  707. width: 100%;
  708. }
  709. .nav_menu .btn {
  710. margin: 5px 10px;
  711. }
  712. .nav_menu .stick {
  713. margin: 0 10px;
  714. }
  715. .nav_menu .stick .btn {
  716. margin: 5px 0;
  717. }
  718. .nav_menu .search {
  719. display: inline-block;
  720. max-width: 97%;
  721. }
  722. .nav_menu .search input {
  723. max-width: 97%;
  724. width: 90px;
  725. }
  726. .nav_menu .search input:focus {
  727. width: 400px;
  728. }
  729. #panel {
  730. left: 5px; right: 5px;
  731. }
  732. .day .date {
  733. display: none;
  734. }
  735. .day .name {
  736. height: 2.6em;
  737. font-size: 1em;
  738. text-shadow: none;
  739. }
  740. .notification,
  741. .actualizeProgress {
  742. left: 10px;
  743. right: 10px;
  744. }
  745. }
  746. /*** FALLBACK ***/
  747. .btn {
  748. background: #1c1c1c;
  749. }
  750. .btn:hover {
  751. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  752. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  753. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  754. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  755. }
  756. .btn-important {
  757. background: #26303F;
  758. }
  759. .btn-important:hover {
  760. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  761. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  762. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  763. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  764. }
  765. .btn-attention {
  766. background: #880011;
  767. }
  768. .btn-attention:hover {
  769. background: -moz-linear-gradient(top, #cc0044 0%, #880011 100%);
  770. background: -webkit-linear-gradient(top, #cc0044 0%, #880011 100%);
  771. background: -o-linear-gradient(top, #cc0044 0%, #880011 100%);
  772. background: -ms-linear-gradient(top, #cc0044 0%, #880011 100%);
  773. }
  774. .dropdown-menu:after {
  775. -moz-transform: rotate(45deg);
  776. -webkit-transform: rotate(45deg);
  777. -ms-transform: rotate(45deg);
  778. }
  779. .nav-head {
  780. background: #1c1c1c;
  781. }
  782. .header > .item.search input {
  783. -moz-transition: width 200ms linear;
  784. -webkit-transition: width 200ms linear;
  785. -o-transition: width 200ms linear;
  786. -ms-transition: width 200ms linear;
  787. }
  788. @media(max-width: 840px) {
  789. .aside {
  790. -moz-transition: width 200ms linear;
  791. -webkit-transition: width 200ms linear;
  792. -o-transition: width 200ms linear;
  793. -ms-transition: width 200ms linear;
  794. }
  795. }
  796. @media print {
  797. .header,
  798. .aside,
  799. .nav_menu,
  800. .day,
  801. .flux_header,
  802. .flux_content .bottom,
  803. .pagination {
  804. display: none;
  805. }
  806. html, body {
  807. background: #fff;
  808. color: #000;
  809. font-family: Serif;
  810. font-size: 12pt;
  811. }
  812. #global,
  813. .flux_content {
  814. display: block !important;
  815. }
  816. .flux_content .content {
  817. width: 100% !important;
  818. text-align: justify;
  819. }
  820. .flux_content .content a {
  821. color: #000;
  822. }
  823. .flux_content .content a:after {
  824. content: " (" attr(href) ") ";
  825. text-decoration: underline;
  826. }
  827. }