| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382 |
- /* Layout */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- html {
- -webkit-text-size-adjust: 100%;
- 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: 3px;
- padding-right: 3px;
- 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;
- 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;
- }
- /* Smoother pages transition */
- @media not all and (prefers-reduced-motion: reduce) {
- @view-transition {
- navigation: auto;
- }
- }
- @media (prefers-reduced-motion: reduce) {
- @view-transition {
- navigation: none;
- }
- }
- /* 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: 3px;
- margin-bottom: 10px;
- }
- .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;
- }
- #header-menu .icon,
- .page-header ul a .icon {
- margin-bottom: 2px;
- }
- .page-header-action-form {
- display: inline-flex;
- }
- :is(.page-button, .page-link) {
- color: var(--link-color);
- border: none;
- background-color: transparent;
- font-size: 1rem;
- cursor: pointer;
- &:is(:hover, :focus) {
- color: var(--link-hover-color);
- }
- }
- .page-button:active {
- translate: 1px 1px;
- }
- /* 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);
- }
- /* 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;
- height: 30px;
- color: #fff;
- background-color: transparent;
- border: 0;
- }
- #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}
- }
- /* Hide the logo when there is not enough space to display menus when using languages more verbose than English */
- @media (min-width: 620px) and (max-width: 850px) {
- .logo {
- display: none;
- }
- }
- @media (min-width: 850px) {
- .logo {
- padding-right: 8px;
- }
- }
- @media (min-width: 620px) {
- body {
- margin: auto;
- max-width: 900px; /* Wide enough to display the logo and the menu one a single row for any languages */
- }
- .header {
- padding-left: 3px;
- }
- .header li {
- display: inline-block;
- padding: 0 5px 0 0;
- line-height: normal;
- border: none;
- font-size: 1.0em;
- }
- .header nav {
- 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;
- }
- .pagination-backward,
- .pagination-forward {
- display: flex;
- }
- }
- /* 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-top: 5px;
- margin-bottom: 10px;;
- 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-top: 10px;
- margin-bottom: 10px;
- }
- .search-form {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- gap: 6px;
- }
- .search-input-row {
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .search-input-row input[type="search"] {
- margin: 0;
- }
- .search-input-row .button {
- margin: 0;
- }
- .search-filter {
- display: inline-flex;
- align-items: center;
- gap: 6px;
- margin: 0;
- }
- .search-filter input[type="checkbox"] {
- margin: 0;
- }
- 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;
- }
- dialog {
- max-height: none;
- height: 100vh;
- border: none;
- padding: 1%;
- }
- .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;
- }
- .webauthn {
- margin-bottom: 20px;
- }
- /* 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;
- justify-content: space-between;
- }
- .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.pagination-backward > div {
- padding-right: 15px;
- }
- .pagination > div.pagination-forward > div {
- padding-left: 15px;
- }
- .pagination-next, .pagination-last {
- text-align: right;
- }
- .pagination-next:after {
- content: " ›";
- }
- .pagination-last:after {
- content: " »";
- }
- .pagination-prev:before {
- content: "‹ ";
- }
- .pagination-first:before {
- 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.current-item:focus {
- outline: none;
- }
- .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 :is(a:is(:focus, :hover), button:is(:focus, :hover)) {
- 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;
- }
- .item-meta-icons li > :is(a, button) {
- color: #777;
- text-decoration: none;
- font-size: 0.8rem;
- border: none;
- background-color: transparent;
- cursor: pointer;
- }
- .item-meta-icons a span {
- text-decoration: underline;
- }
- .item-meta-icons button:active {
- translate: 1px 1px;
- }
- .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: text-bottom;
- display: inline-block;
- margin-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 span {
- text-decoration: underline;
- }
- .entry-actions li {
- display: inline-block;
- margin-right: 15px;
- line-height: 1.7em;
- }
- .entry-actions .icon-label {
- vertical-align: middle;
- }
- .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-tags-list {
- display: inline;
- margin: 0;
- padding: 0;
- }
- .entry-tags-list li {
- display: inline-block;
- }
- .entry-tags-list li::after {
- content: ", ";
- }
- .entry-tags-list li:last-child::after {
- content: "";
- }
- .entry-additional-tags {
- font-size: 0.8em;
- margin-top: 10px;
- }
- .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;
- }
- .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 iframe {
- display: block;
- }
- .entry-content img {
- height: auto;
- }
- .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);
- }
- .entry-content aside {
- font-size: 0.9em;
- padding: 1ch;
- margin-bottom: 15px;
- font-style: italic;
- border: dotted var(--entry-content-aside-border-color) 2px;
- }
- 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%;
- }
- .entry-external-link {
- font-size: 0.8em;
- margin-top: 10px;
- margin-bottom: 10px;
- word-wrap: break-word;
- }
- /* Confirmation */
- .confirm {
- font-weight: 500;
- color: #ed2d04;
- }
- .confirm button {
- color: #ed2d04;
- border: none;
- background-color: transparent;
- cursor: pointer;
- font-size: inherit;
- }
- .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%;
- }
- .media-controls{
- font-size: .9em;
- display: flex;
- flex-wrap: wrap;
- }
- .media-controls .media-control-label{
- line-height: 1em;
- }
- .media-controls>div{
- display: flex;
- flex-wrap: nowrap;
- justify-content:center;
- min-width: 50%;
- align-items: center;
- }
- .media-controls>div>*{
- padding-left:12px;
- }
- .media-controls>div>*:first-child{
- padding-left:0;
- }
- .media-controls span.speed-indicator{
- /*monospace to ensure constant width even when value change. JS ensure the value is always on 4 characters (in most cases)
- This reduce ui flickering due to element moving around a bit
- */
- font-family: monospace;
- }
- .integration-form summary {
- font-weight: 700;
- }
- .integration-form details {
- margin-bottom: 15px;
- }
- .integration-form details .form-section {
- margin-top: 15px;
- }
- .hidden {
- display: none;
- }
- footer {
- margin: 1em auto;
- }
- footer .elevator {
- display: block;
- width: fit-content;
- margin: 0 auto;
- }
- .pagination-top .elevator,
- .pagination-entry-top .elevator {
- display: none;
- }
|