Skip to content

Commit

Permalink
add indicators of external urls to css
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Oga committed May 6, 2024
1 parent 4901a77 commit 67dec7b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
17 changes: 16 additions & 1 deletion assets/chapter.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,24 @@ table th {
color: white;
}

/* Images */
/* Images, Misc... */

img {
max-width: 80%;
margin-left: 2rem;
}

a[href*="//"]::before {
content: "👋 "
}

a[href*="//manticoresearch.com/"]::before {
content: "🌐 "
}
a[href*="//play"]::before {
content: "▶️ "
}

a[href*="//github"]::before {
content: "⚙️ "
}
17 changes: 16 additions & 1 deletion docs/chapter.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,24 @@ table th {
color: white;
}

/* Images */
/* Images, Misc... */

img {
max-width: 80%;
margin-left: 2rem;
}

a[href*="//"]::before {
content: "👋 "
}

a[href*="//manticoresearch.com/"]::before {
content: "🌐 "
}
a[href*="//play"]::before {
content: "▶️ "
}

a[href*="//github"]::before {
content: "⚙️ "
}

0 comments on commit 67dec7b

Please sign in to comment.