| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242 |
- /* Layout */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html {
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- font-family: var(--font-family);
- text-rendering: optimizeLegibility;
- color: var(--body-color);
- background: var(--body-background);
- }
- hr {
- border: 0;
- height: 0;
- border-top: 1px dotted var(--hr-border-color);
- padding-bottom: 10px;
- }
- h1, h2, h3 {
- color: var(--title-color);
- }
- main {
- padding-left: 5px;
- padding-right: 5px;
- margin-bottom: 30px;
- }
- a {
- color: var(--link-color);
- }
- a:focus {
- outline: 0;
- color: var(--link-focus-color);
- text-decoration: none;
- outline: 1px dotted #aaa;
- }
- a:hover {
- color: var(--link-hover-color);
- text-decoration: none;
- }
- .sr-only {
- border: 0 !important;
- clip: rect(1px, 1px, 1px, 1px) !important;
- -webkit-clip-path: inset(50%) !important;
- clip-path: inset(50%) !important;
- height: 1px !important;
- overflow: hidden !important;
- margin: -1px !important;
- padding: 0 !important;
- position: absolute !important;
- width: 1px !important;
- white-space: nowrap !important;
- }
- .skip-to-content-link {
- --padding-size: 8px;
- --border-size: 1px;
- background-color: var(--category-background-color);
- color: var(--category-color);
- border: var(--border-size) solid var(--category-border-color);
- border-radius: 5px;
- inset-inline-start: 50%;
- padding: var(--padding-size);
- position: absolute;
- transition: translate 0.3s;
- translate: -50% calc(-100% - calc(var(--padding-size) * 2) - calc(var(--border-size) * 2));
- }
- .skip-to-content-link:focus {
- translate: -50% 0;
- }
- /* Header and main menu */
- .header {
- margin-top: 10px;
- margin-bottom: 20px;
- }
- .header nav {
- display: flex;
- align-items: stretch;
- flex-direction: column;
- }
- .header nav .logo svg {
- padding: 5px;
- inline-size: 24px;
- block-size: 24px;
- }
- .header nav .logo[aria-expanded="true"] svg {
- rotate: 180deg;
- }
- .header ul.js-menu-show {
- display: initial;
- }
- .header ul:not(.js-menu-show) {
- display: none;
- }
- .header li {
- cursor: pointer;
- padding-left: 10px;
- line-height: 2.1em;
- font-size: 1.2em;
- border-bottom: 1px dotted var(--header-list-border-color);
- }
- .header li a:hover {
- color: #888;
- }
- .header :is(a, summary) {
- font-size: 0.9em;
- color: var(--header-link-color);
- text-decoration: none;
- border: none;
- font-weight: 400;
- }
- .header .active a {
- color: var(--header-active-link-color);
- /* Note: Firefox on Windows does not show the link as bold if the value is under 600 */
- font-weight: 600;
- }
- .header a:focus {
- color: var(--header-link-focus-color);
- }
- /* Page header and footer*/
- .page-header {
- padding-inline: 5px;
- margin-bottom: 25px;
- }
- .page-footer {
- margin-bottom: 10px;
- }
- .page-header h1 {
- font-weight: 500;
- border-bottom: 1px dotted var(--page-header-title-border-color);
- font-size: 1.5rem;
- }
- .page-header h1 a {
- text-decoration: none;
- color: var(--page-header-title-color);
- }
- .page-header h1 a:hover,
- .page-header h1 a:focus {
- color: #666;
- }
- .page-header li,
- .page-footer li {
- list-style-type: none;
- line-height: 1.8em;
- white-space: nowrap;
- }
- .page-header ul a .icon {
- padding-bottom: 2px;
- }
- /* Logo */
- .logo {
- text-align: center;
- display: flex;
- justify-content: center;
- }
- .logo a {
- color: var(--logo-color);
- letter-spacing: 1px;
- display: flex;
- align-items: center;
- }
- .logo a:hover {
- color: #339966;
- }
- .logo a span {
- color: #339966;
- }
- .logo a:hover span {
- color: var(--logo-hover-color-span);
- }
- /* Search form */
- .search {
- text-align: center;
- margin-top: 10px;
- margin-right: 5px;
- }
- .search details svg {
- padding: 5px;
- inline-size: 24px;
- block-size: 24px;
- translate: 0 -3px;
- }
- .search details[open] svg {
- rotate: 180deg;
- }
- .search details > summary {
- list-style: none;
- display: flex;
- justify-content: center;
- inline-size: fit-content;
- margin-inline: auto;
- }
- .search details > summary::marker, /* Latest Chrome, Edge, Firefox */
- .search details > summary::-webkit-details-marker /* Safari */ {
- display: none;
- }
- .search-toggle-switch {
- display: none;
- }
- /* PWA prompt */
- #prompt-home-screen {
- display: none;
- position: fixed;
- bottom: 0;
- right: 0;
- width: 100%;
- text-align: center;
- background: #000;
- opacity: 85%;
- }
- #btn-add-to-home-screen {
- text-decoration: none;
- line-height: 30px;
- color: #fff;
- }
- #btn-add-to-home-screen:hover {
- color: red;
- }
- /* Notification - "Toast" */
- #toast-wrapper {
- visibility: hidden;
- opacity: 0;
- position: fixed;
- left: 0;
- bottom: 10%;
- color: #fff;
- width: 100%;
- text-align: center;
- }
- #toast-msg {
- background-color: rgba(0,0,0,0.7);
- padding-bottom: 4px;
- padding-left: 4px;
- padding-right: 5px;
- border-radius: 5px;
- }
- .toast-animate {
- animation: toastKeyFrames 2s;
- }
- @keyframes toastKeyFrames {
- 0% {visibility: hidden; opacity: 0;}
- 25% {visibility: visible; opacity: 1; z-index: 9999}
- 50% {visibility: visible; opacity: 1; z-index: 9999}
- 75% {visibility: visible; opacity: 1; z-index: 9999}
- 100% {visibility: hidden; opacity: 0; z-index: 0}
- }
- @media (min-width: 620px) {
- body {
- margin: auto;
- max-width: 750px;
- }
- .header {
- margin-bottom: 0;
- }
- .logo {
- text-align: left;
- float: left;
- margin-right: 15px;
- margin-left: 5px;
- }
- .header li {
- display: inline;
- padding: 0;
- padding-right: 15px;
- line-height: normal;
- border: none;
- font-size: 1.0em;
- }
- .header nav {
- align-items: end;
- flex-direction: row;
- }
- .header .logo svg {
- display: none;
- }
- .header ul:not(.js-menu-show), .header ul.js-menu-show {
- display: revert;
- }
- .header :is(a, summary):hover {
- color: var(--header-link-hover-color);
- }
- .page-header li,
- .page-footer li {
- display: inline;
- padding-right: 15px;
- }
- /* Search form */
- .search {
- text-align: right;
- display: block;
- }
- .search details > summary {
- margin-inline: auto 0;
- }
- .search-toggle-switch {
- display: block;
- }
- .search-form {
- display: none;
- }
- .search-toggle-switch.has-search-query {
- display: none;
- }
- .search-form.has-search-query {
- display: block;
- }
- }
- /* Tables */
- table {
- width: 100%;
- border-collapse: collapse;
- }
- table, th, td {
- border: 1px solid var(--table-border-color);
- }
- th, td {
- padding: 5px;
- text-align: left;
- }
- td {
- vertical-align: top;
- }
- th {
- background: var(--table-th-background);
- color: var(--table-th-color);
- font-weight: 400;
- }
- tr:hover {
- color: var(--table-tr-hover-color);
- background-color: var(--table-tr-hover-background-color);
- }
- .column-40 {
- width: 40%;
- }
- .column-25 {
- width: 25%;
- }
- .column-20 {
- width: 20%;
- }
- /* Forms */
- fieldset {
- border: 1px dotted #ddd;
- padding: 8px;
- margin-bottom: 20px;
- }
- legend {
- font-weight: 500;
- padding-left: 3px;
- padding-right: 3px;
- }
- label {
- cursor: pointer;
- display: block;
- }
- .radio-group {
- line-height: 1.9em;
- }
- div.radio-group label {
- display: inline-block;
- }
- select {
- margin-bottom: 15px;
- }
- input[type="search"],
- input[type="url"],
- input[type="password"],
- input[type="text"],
- input[type="number"] {
- color: var(--input-color);
- background: var(--input-background);
- border: var(--input-border);
- padding: 3px;
- line-height: 20px;
- width: 250px;
- font-size: 99%;
- margin-bottom: 10px;
- margin-top: 5px;
- appearance: none;
- }
- input[type="search"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="text"]:focus,
- input[type="number"]:focus {
- color: var(--input-focus-color);
- border-color: var(--input-focus-border-color);
- outline: 0;
- box-shadow: var(--input-focus-box-shadow);
- }
- #form-entries-per-page {
- max-width: 80px;
- }
- input[type="checkbox"] {
- margin-bottom: 15px;
- }
- textarea {
- width: 350px;
- color: var(--input-color);
- background: var(--input-background);
- border: var(--input-border);
- padding: 3px;
- margin-bottom: 10px;
- margin-top: 5px;
- appearance: none;
- }
- textarea:focus {
- color: var(--input-focus-color);
- border-color: var(--input-focus-border-color);
- outline: 0;
- box-shadow: var(--input-focus-box-shadow);
- }
- input::placeholder {
- color: var(--input-placeholder-color);
- padding-top: 2px;
- }
- .form-label-row {
- display: flex;
- }
- .form-help {
- font-size: 0.9em;
- color: brown;
- margin-bottom: 15px;
- }
- .form-section {
- border-left: 2px dotted #ddd;
- padding-left: 20px;
- margin-left: 10px;
- }
- details > summary {
- outline: none;
- cursor: pointer;
- }
- .details-content {
- margin-top: 15px;
- }
- /* Buttons */
- a.button {
- text-decoration: none;
- }
- .button {
- display: inline-block;
- appearance: none;
- font-size: 1.1em;
- cursor: pointer;
- padding: 3px 10px;
- border: 1px solid;
- border-radius: unset;
- }
- .button-primary {
- border-color: var(--button-primary-border-color);
- background: var(--button-primary-background);
- color: var(--button-primary-color);
- }
- a.button-primary:hover,
- a.button-primary:focus,
- .button-primary:hover,
- .button-primary:focus {
- border-color: var(--button-primary-focus-border-color);
- background: var(--button-primary-focus-background);
- color: var(--button-primary-color);
- }
- .button-danger {
- border-color: #b0281a;
- background: #d14836;
- color: #fff;
- }
- .button-danger:hover,
- .button-danger:focus {
- color: #fff;
- background: #c53727;
- }
- .button:disabled {
- color: #ccc;
- background: #f7f7f7;
- border-color: #ccc;
- }
- .buttons {
- margin-top: 10px;
- margin-bottom: 20px;
- }
- fieldset .buttons {
- margin-bottom: 0;
- }
- /* Alerts */
- .alert {
- padding: 8px 35px 8px 14px;
- margin-bottom: 20px;
- color: var(--alert-color);
- background-color: var(--alert-background-color);
- border: 1px solid var(--alert-border-color);
- border-radius: 4px;
- overflow: auto;
- }
- .alert h3 {
- margin-top: 0;
- margin-bottom: 15px;
- }
- .alert-success {
- color: var(--alert-success-color);
- background-color: var(--alert-success-background-color);
- border-color: var(--alert-success-border-color);
- }
- .alert-error {
- color: var(--alert-error-color);
- background-color: var(--alert-error-background-color);
- border-color: var(--alert-error-border-color);
- }
- .alert-error h3,
- .alert-error a {
- color: var(--alert-error-color);
- }
- .alert-info {
- color: var(--alert-info-color);
- background-color: var(--alert-info-background-color);
- border-color: var(--alert-info-border-color);
- }
- /* Panel */
- .panel {
- color: var(--panel-color);
- background-color: var(--panel-background);
- border: 1px solid var(--panel-border-color);
- border-radius: 5px;
- padding: 10px;
- margin-bottom: 15px;
- }
- .panel h3 {
- font-weight: 500;
- margin-top: 0;
- margin-bottom: 20px;
- }
- .panel ul {
- margin-left: 30px;
- }
- /* Modals */
- template {
- display: none;
- }
- #modal-left {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- width: 380px;
- overflow: auto;
- color: var(--modal-color);
- background: var(--modal-background);
- box-shadow: var(--modal-box-shadow);
- padding: 5px;
- padding-top: 30px;
- }
- #modal-left h3 {
- font-weight: 400;
- margin: 0;
- }
- .btn-close-modal {
- position: absolute;
- top: 0;
- right: 0;
- font-size: 1.7em;
- color: #ccc;
- padding:0 .2em;
- margin: 10px;
- text-decoration: none;
- background-color: transparent;
- border: none;
- }
- .btn-close-modal:hover {
- color: #999;
- }
- /* Keyboard Shortcuts */
- .keyboard-shortcuts li {
- margin-left: 25px;
- list-style-type: square;
- color: var(--keyboard-shortcuts-li-color);
- font-size: 0.95em;
- line-height: 1.45em;
- }
- .keyboard-shortcuts p {
- line-height: 1.9em;
- }
- /* Login form */
- .login-form {
- margin: 50px auto 0;
- max-width: 300px;
- }
- /* Counters */
- .unread-counter-wrapper,
- .error-feeds-counter-wrapper {
- font-size: 0.9em;
- font-weight: 300;
- color: var(--counter-color);
- }
- /* Category label */
- .category {
- font-size: 0.75em;
- background-color: var(--category-background-color);
- border: 1px solid var(--category-border-color);
- border-radius: 5px;
- margin-left: 0.25em;
- padding: 1px 0.4em 1px 0.4em;
- white-space: nowrap;
- color: var(--category-color);
- }
- .category a {
- color: var(--category-link-color);
- text-decoration: none;
- }
- .category a:hover,
- .category a:focus {
- color: var(--category-link-hover-color);
- }
- .category-item-total {
- color: var(--body-color);
- }
- /* Pagination */
- .pagination {
- font-size: 1.1em;
- display: flex;
- align-items: center;
- }
- .pagination-top {
- padding-bottom: 8px;
- }
- .pagination-bottom {
- padding-top: 8px;
- }
- .pagination-entry-top {
- padding-top: 8px;
- }
- .pagination-entry-bottom {
- border-top: 1px dotted var(--pagination-border-color);
- margin-bottom: 15px;
- margin-top: 50px;
- padding-top: 8px;
- }
- .pagination > div {
- flex: 1;
- }
- .pagination-next {
- text-align: right;
- }
- .pagination-prev:before {
- content: "« ";
- }
- .pagination-next:after {
- content: " »";
- }
- .pagination a {
- color: var(--pagination-link-color);
- }
- .pagination a:hover,
- .pagination a:focus {
- text-decoration: none;
- }
- /* List view */
- .item {
- border: 1px dotted var(--item-border-color);
- margin-bottom: 20px;
- padding: var(--item-padding);
- overflow: hidden;
- }
- .item.current-item {
- border: var(--current-item-border-width) solid var(--current-item-border-color);
- padding: 3px;
- box-shadow: var(--current-item-box-shadow);
- }
- .item-header {
- font-size: 1rem;
- }
- .item-header span {
- font-weight: normal;
- display: inline-block;
- }
- .item-title {
- font-size: 1rem;
- margin: 0;
- display: inline;
- }
- .item-title a {
- text-decoration: none;
- font-weight: var(--item-title-link-font-weight);
- font-size: inherit;
- }
- .feed-entries-counter {
- display: inline-flex;
- gap: 2px;
- align-items: center;
- }
- .item-status-read .item-title a {
- color: var(--item-status-read-title-link-color);
- }
- .item-meta {
- color: var(--item-meta-focus-color);
- font-size: 0.8em;
- }
- .item-meta a {
- color: #777;
- text-decoration: none;
- }
- .item-meta a:hover,
- .item-meta a:focus {
- color: #333;
- }
- .item-meta ul {
- margin-top: 5px;
- }
- .item-meta li {
- display: inline-block;
- }
- .item-meta-info {
- font-size: 0.85em;
- }
- .item-meta-info li:not(:last-child):after {
- content: "|";
- color: var(--item-meta-li-color);
- }
- .item-meta-icons li {
- margin-right: 8px;
- margin-top: 4px;
- }
- .item-meta-icons li:last-child {
- margin-right: 0;
- }
- .items {
- overflow-x: hidden;
- touch-action: pan-y;
- }
- .hide-read-items .item-status-read:not(.current-item) {
- display: none;
- }
- .entry-swipe {
- transition-property: transform;
- transition-duration: 0s;
- transition-timing-function: ease-out;
- }
- /* Feeds list */
- article.feed-parsing-error {
- background-color: var(--feed-parsing-error-background-color);
- border-style: var(--feed-parsing-error-border-style);
- border-color: var(--feed-parsing-error-border-color);
- }
- article.feed-has-unread {
- background-color: var(--feed-has-unread-background-color);
- border-style: var(--feed-has-unread-border-style);
- border-color: var(--feed-has-unread-border-color);
- }
- .parsing-error {
- font-size: 0.85em;
- margin-top: 2px;
- color: var(--parsing-error-color);
- }
- .parsing-error-count {
- cursor: pointer;
- }
- /* Categories list */
- article.category-has-unread {
- background-color: var(--category-has-unread-background-color);
- border-style: var(--category-has-unread-border-style);
- border-color: var(--category-has-unread-border-color);
- }
- /* Icons */
- .icon,
- .icon-label {
- vertical-align: middle;
- display: inline-block;
- padding-right: 2px;
- }
- .icon {
- width: 16px;
- height: 16px;
- }
- /* Entry view */
- .entry header {
- padding-bottom: 5px;
- padding-inline: 5px;
- border-bottom: 1px dotted var(--entry-header-border-color);
- }
- .entry header h1 {
- font-size: 2.0em;
- line-height: 1.25em;
- margin: 5px 0 30px 0;
- overflow-wrap: break-word;
- }
- .entry header h1 a {
- text-decoration: none;
- color: var(--entry-header-title-link-color);
- }
- .entry header h1 a:hover,
- .entry header h1 a:focus {
- color: #666;
- }
- .entry-actions {
- margin-bottom: 20px;
- }
- .entry-actions a {
- text-decoration: none;
- }
- .entry-actions li {
- display: inline-block;
- margin-right: 15px;
- line-height: 1.7em;
- }
- .entry-meta {
- font-size: 0.95em;
- margin: 0 0 20px;
- color: #666;
- overflow-wrap: break-word;
- }
- .entry-tags {
- margin-top: 20px;
- margin-bottom: 20px;
- }
- .entry-tags strong {
- font-weight: 600;
- }
- .entry-website img {
- vertical-align: top;
- }
- .entry-website a {
- color: #666;
- vertical-align: top;
- text-decoration: none;
- }
- .entry-website a:hover,
- .entry-website a:focus {
- text-decoration: underline;
- }
- .entry-date {
- font-size: 0.65em;
- font-style: italic;
- color: #555;
- }
- .entry-content {
- padding-top: 15px;
- font-size: 1.2em;
- font-weight: var(--entry-content-font-weight);
- font-family: var(--entry-content-font-family);
- color: var(--entry-content-color);
- line-height: 1.4em;
- overflow-wrap: break-word;
- touch-action: pan-y pinch-zoom;
- }
- .entry-content h1, h2, h3, h4, h5, h6 {
- margin-top: 15px;
- margin-bottom: 10px;
- }
- .entry-content iframe,
- .entry-content video,
- .entry-content img {
- max-width: 100%;
- }
- .entry-content figure {
- margin-top: 15px;
- margin-bottom: 15px;
- }
- .entry-content figure img {
- border: 1px solid #000;
- }
- .entry-content figcaption {
- font-size: 0.75em;
- text-transform: uppercase;
- color: #777;
- }
- .entry-content p {
- margin-top: 10px;
- margin-bottom: 15px;
- }
- .entry-content a {
- overflow-wrap: break-word;
- }
- .entry-content a:visited {
- color: var(--link-visited-color);
- }
- .entry-content dt {
- font-weight: 500;
- margin-top: 15px;
- color: #555;
- }
- .entry-content dd {
- margin-left: 15px;
- margin-top: 5px;
- padding-left: 20px;
- border-left: 3px solid #ddd;
- color: #777;
- font-weight: 300;
- line-height: 1.4em;
- }
- .entry-content blockquote {
- border-left: 4px solid #ddd;
- padding-left: 25px;
- margin-left: 20px;
- margin-top: 20px;
- margin-bottom: 20px;
- line-height: 1.4em;
- font-family: var(--entry-content-quote-font-family);
- }
- .entry-content q {
- color: var(--entry-content-quote-color);
- font-family: var(--entry-content-quote-font-family);
- font-style: italic;
- }
- .entry-content q:before {
- content: "“";
- }
- .entry-content q:after {
- content: "”";
- }
- .entry-content pre {
- padding: 5px;
- overflow: auto;
- overflow-wrap: initial;
- border-width: 1px;
- border-style: solid;
- }
- .entry-content pre,
- .entry-content code {
- color: var(--entry-content-code-color);
- background: var(--entry-content-code-background);
- border-color: var(--entry-content-code-border-color);
- }
- .entry-content table {
- max-width: 100%;
- }
- .entry-content ul,
- .entry-content ol {
- margin-left: 30px;
- margin-top: 15px;
- margin-bottom: 15px;
- }
- .entry-content li ul,
- .entry-content li ol {
- margin-top: 0;
- margin-bottom: 0;
- }
- .entry-content ul {
- list-style-type: square;
- }
- .entry-content strong {
- font-weight: 600;
- }
- .entry-content sub,
- .entry-content sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- .entry-content sub {
- bottom: -0.25em;
- }
- .entry-content sup {
- top: -0.5em;
- }
- .entry-content abbr {
- cursor: pointer;
- text-decoration: none;
- border-bottom: 1px dashed var(--entry-content-abbr-border-color);
- }
- details.entry-enclosures {
- margin-top: 25px;
- }
- .entry-enclosures summary {
- font-weight: 500;
- font-size: 1.2em;
- }
- .entry-enclosure {
- border: 1px dotted var(--entry-enclosure-border-color);
- padding: 5px;
- margin-top: 10px;
- max-width: 100%;
- }
- .entry-enclosure-download {
- font-size: 0.85em;
- overflow-wrap: break-word;
- }
- .enclosure-video video,
- .enclosure-image img {
- max-width: 100%;
- }
- /* Confirmation */
- .confirm {
- font-weight: 500;
- color: #ed2d04;
- }
- .confirm a {
- color: #ed2d04;
- }
- .loading {
- font-style: italic;
- }
- /* Bookmarlet */
- .bookmarklet {
- border: 1px dashed #ccc;
- border-radius: 5px;
- padding: 15px;
- margin: 15px;
- text-align: center;
- }
- .bookmarklet a {
- font-weight: 600;
- text-decoration: none;
- font-size: 1.2em;
- }
- .disabled {
- opacity: 20%;
- }
- audio, video {
- width: 100%;
- }
- .integration-form summary {
- font-weight: 700;
- }
- .integration-form details {
- margin-bottom: 15px;
- }
- .integration-form details .form-section {
- margin-top: 15px;
- }
- .hidden {
- display: none;
- }
|