I'm hoping to achieve the effect in the following design.
Possible without using images?
fiddle: https://jsfiddle.net/8k66bwbk/
.blue-fade
{
font-size: 40px;
font-family: Helvetica,Arial,sans-serif;
font-weight: 100;
color: #1ba0d7;
}
Do you want something like that?
.blue-fade {
font-size: 40px;
font-family: Helvetica,Arial,sans-serif;
font-weight: 100;
background: -webkit-linear-gradient(#1ba0d7, #002d3f);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
<p class="blue-fade">
368%
</p>
https://jsfiddle.net/9dx4fcrz/
You can also change fade by opacity. Here is an example with hover.
.blue-fade
{
font-size: 40px;
font-family: Helvetica,Arial,sans-serif;
font-weight: 100;
color: #1ba0d7;
}
.blue-fade:hover {
opacity: 0.5;
}
<h2 class="blue-fade">
Subheadline
</h2>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With