button
by shorif2000
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<div id="feedback">
<div class="feedback_conatiner">
<div class="feedbacktext">Help us build a better portal</div>
<div class="top-buffer">Share your thoughts <b>></b></div>
</div>
</div>
CSS
#feedback {
background: white;
position: fixed;
right: 0;
bottom: 0;
cursor: pointer;
}
#feedback:active {
transform: scale(0.98);
box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
.feedback_conatiner{
margin: 10px;
background: lightgrey;
padding: 10px;
color: navy;
}
.top-buffer{
margin-top: 10px;
font-size: smaller;
}