JSFiddle - React, Tailwind, and code Playground
by GMK Hussain
HTML
<p class="about-bot">Logo Designer</p>
CSS
body {
background:#ccc;
}
.about-bot {
background-color: rgba(0, 141, 238, 0.8);
box-shadow: 0 0 0 20px rgba(255, 255, 255, .8);
color: #fff;
padding: 20px;
}
JavaScript
$(function () {
setInterval(function () {
$('.about-bot').fadeIn(500).delay(500).fadeOut(800).delay(500).fadeIn(500);
}, 500);
});