lbryio/lbry-desktop

"Share to Minds" button

Open

#5653 opened on Mar 10, 2021

View on GitHub
 (5 comments) (2 reactions) (0 assignees)JavaScript (3,596 stars) (412 forks)batch import
help wantedlevel: 2type: new feature

Description

Minds is a Facebook alternative with crypto economy would be cool to have a button to share lbry content on it with a button like those for the "mainstream" social media. This is the embedding code: HTML:

<a  class="minds-share-button"
  target="_blank"
  title="Share to Minds"
  href="https://www.minds.com/newsfeed/subscribed?intentUrl=[YOUR ENCODED URL GOES HERE]">
  <img
    src="https://cdn-assets.minds.com/front/dist/en/assets/logos/bulb.svg"
    alt="Minds"
    height="40"
  />
</a>

CSS:

.minds-share-button {
  display: block;
  max-width: 50px;
  max-height: 60px;
  padding: 10px 5px 5px;
  text-align: center;
  background-color: #242a30;
  border: 1px solid #414c57;
  border-radius: 3px;
  box-shadow: 5px 5px 8px -4px rgba(0, 0, 0, 0.4);
}

Contributor guide