Pinned Loading
-
-
lerp.js
lerp.js 1// Linear interpolation
2const lerp = function(start, end, t){
3return start * (1 - t) + end * t;
4}
-
Smart Underline Sass Mixin
Smart Underline Sass Mixin 1@mixin smart-underline($background: #fff, $text: #000, $selection: #ffc, $position: 86%){
2a {
3color: inherit;
4text-decoration: none;
5background: -webkit-linear-gradient($background, $background), -webkit-linear-gradient($background, $background), -webkit-linear-gradient($text, $text);
-
type-scaling.html
type-scaling.html 1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<title>Type Scaling</title>
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.