This commit is contained in:
Prasanta Kumar Dutta 2023-09-07 14:11:42 +05:30
parent ca97ddfa7a
commit a779e53d72
7 changed files with 23 additions and 22 deletions

View file

@ -75,7 +75,7 @@
{#if authors.length > 0}
{#each authors as author, i}
<a
class="no-underline whitespace-nowrap text-primary font-medium"
class="no-underline whitespace-nowrap text-primary font-bold"
href="{getAuthorPage(author)}"
rel="author"
>
@ -86,7 +86,7 @@
{:else}
<a
href="https://www.reuters.com"
class="no-underline whitespace-nowrap text-primary font-medium"
class="no-underline whitespace-nowrap text-primary font-bold"
>Reuters</a
>
{/if}

View file

@ -85,7 +85,7 @@
<div class="title">
{#if section}
<p
class="section-title mb-0 font-subhed text-xxs text-secondary font-bold uppercase whitespace-nowrap tracking-wider"
class="section-title mb-0 font-subhed text-xs text-secondary font-bold uppercase whitespace-nowrap tracking-wider"
>
{section}
</p>

View file

@ -75,7 +75,7 @@
<div class="title">
{#if section}
<p
class="section-title mb-0 font-subhed text-xxs text-secondary font-bold uppercase whitespace-nowrap tracking-wider"
class="section-title mb-0 font-subhed text-xs text-secondary font-bold uppercase whitespace-nowrap tracking-wider"
>
{#if sectionUrl}
<a class="no-underline !text-secondary" href="{sectionUrl}"

View file

@ -123,29 +123,18 @@ figcaption {
blockquote {
@include fmx-0;
@include fpl-3;
@include fpy-3;
@include fpr-1;
border-left: 2px solid $theme-colour-brand-rules;
@include fmy-4;
@include fmy-6;
p {
@include font-body;
@include body-note;
@include font-light;
@include text-lg;
@include leading-tight;
@include fmb-1;
font-style: italic;
}
blockquote {
@include fmb-0;
@include fmt-3;
border: 0;
@include fpy-0;
@include fpl-0;
p {
@include body-caption;
@include text-sm;
@include font-note;
@include fm-0;
font-style: normal;
@include fmb-0;
}
}
}

View file

@ -80,7 +80,7 @@ $fluid-margin-levels: (
@mixin fml-1 {
margin-left: map.get($fluid-margin-levels, '1');
}
@mixin \!fmr-1 {
@mixin fmr-1 {
margin-right: map.get($fluid-margin-levels, '1') !important;
}
@mixin \!fm-1 {

View file

@ -31,3 +31,7 @@
.body-link {
@include body-link;
}
.drop-cap {
@include drop-cap;
}

View file

@ -83,8 +83,16 @@
@mixin body-link {
color: currentColor;
text-decoration: underline;
text-underline-position: under;
text-underline-position: from-font;
text-decoration-style: dotted;
text-decoration-thickness: 1px;
text-decoration-color: var(--theme-colour-text-secondary);
}
@mixin drop-cap {
float: left;
@include text-5xl;
line-height: 0.9;
@include fmr-1;
@include font-light;
}