collove / pasteme

⚡ RESTful Pastebin Service for @hashnode via @planetscale
https://pasteme.pythonanywhere.com
MIT License
85 stars 7 forks source link

Feature Request: Make the intro `pasteme-cli` installer command fancier #49

Closed lnxpy closed 2 years ago

lnxpy commented 2 years ago

Give a glowing gradient-like background color to the installation div to make it much more special!

mh-firouzjah commented 2 years ago

Hi, I tried to give the parent element div a class name glow and then the following code worked for me. hope you enjoy it:

<style>
    .glow pre{
        padding: 3px;
        border-radius: 15px;
    }
    .glow pre code {
        border-radius: 15px;
    }
    .glow {
  position: relative;
  border-radius: 15px;
  padding: 0 2px;
  margin: 2px;
}

.glow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: white;
  filter: blur(5px); /* remove or reduce this amount if the shape is too blur */
  border-radius: 15px;
}

.glow:after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  z-index: -2;
  /* take care of browser compatibility here for linear background */
  background: linear-gradient(45deg, #00ddff, #0800ff, #bf00ff, #ff0095, #ff0000);
  filter: blur(15px);
}

</style>
lnxpy commented 2 years ago

Thank you @mh-firouzjah jan. It's implemented now.