Created
March 4, 2023 21:51
-
-
Save zamsyt/fdc3bac0c8a77f2692da78786483be17 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Link preview card v0.1 */ | |
.callout[data-callout="link-preview"] .callout-content > :first-child a { | |
overflow-wrap: anywhere; | |
} | |
.callout[data-callout="link-preview"] { | |
--callout-color: 150,150,150; | |
mix-blend-mode: normal; | |
padding: 0; | |
--callout-border-width: 1px; | |
} | |
.callout[data-callout="link-preview"] .callout-title { display: none; } | |
.callout[data-callout="link-preview"] .callout-content { display: flex; } | |
/* text */ | |
.callout[data-callout="link-preview"] .callout-content > :first-child { | |
margin: 1em; | |
} | |
/* image */ | |
.callout[data-callout="link-preview"] .callout-content > :last-child:not(:first-child) { | |
margin: 0; | |
margin-left: auto; | |
flex-basis: 30%; | |
flex-shrink: 0; | |
} | |
.callout[data-callout="link-preview"] .callout-content > :last-child > img { | |
display: block; | |
object-fit: cover; | |
height: 100%; | |
width: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment