Demo and documentation site here
A few options to start with:
- Download the css file
- Copy CDN into
<head>
of HTML document:https://cdn.jsdelivr.net/gh/sieis/unmove@main/dist/unmove.css
- Check out demo site for samples.
- Create a new
index.html
document
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>unmove demo</title>
</head>
<body>
</body>
</html>
- Include the CDN
<link>
tag in the<head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sieis/unmove@main/dist/unmove.css">
<title>unmove demo</title>
</head>
<body>
</body>
</html>
- Purely CSS
- Incredibly lightweight
- Blazingly simple
- Entirely open-source