@utility
CSS classes .bg-fade-to-*
, which apply
directional faded gradients as background-image
..bg-fade-to-t
.bg-fade-to-r
.bg-fade-to-b
.bg-fade-to-l
<!doctype html>
<html lang="en" class="auto">
<head>
<title></title>
</head>
<body class="bg-base">
<div class="grid gap-fluid-md prose-text-sm text-center text-primary-dark">
<div class="bg-fade-to-t rounded-lg p-fluid-md">
.bg-fade-to-t
</div>
<div class="bg-fade-to-r rounded-lg p-fluid-md">
.bg-fade-to-r
</div>
<div class="bg-fade-to-b rounded-lg p-fluid-md">
.bg-fade-to-b
</div>
<div class="bg-fade-to-l rounded-lg p-fluid-md">
.bg-fade-to-l
</div>
</div>
<script>
</script>
</body>
</html>