Skip to content

Commit 90a2793

Browse files
committed
docs: update
1 parent 7d2ebfc commit 90a2793

File tree

5 files changed

+32
-10
lines changed

5 files changed

+32
-10
lines changed

docs/assets/theme.css

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,9 @@ body:not(.ready) > nav,
1818
body:not(.ready) [data-cloak] {
1919
display: none;
2020
}
21-
div#app {
22-
font-size: 30px;
23-
font-weight: lighter;
24-
margin: 40vh auto;
25-
text-align: center;
26-
}
27-
div#app:empty:before {
28-
content: 'Loading...';
21+
div#app > svg {
22+
width: 100vw;
23+
height: 100vh;
2924
}
3025
img.emoji {
3126
height: 1.2em;

docs/config.md

Whitespace-only changes.

docs/guide.md

Whitespace-only changes.

docs/index.html

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,41 @@
33
<head>
44
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
55
<meta name="viewport" content="width=device-width,initial-scale=1" />
6-
<meta name="description" content="A tools like Contentlayer, turns Markdown, YAML, JSON, or other files into an app's data layer based on a schema." />
6+
<meta name="description" content="A tools like Contentlayer, Turns Markdown, YAML, JSON, or other files into app's data layer with typesafe schema." />
77
<meta name="keywords" content="velite, contentlayer, markdown, yaml, json, data layer, schema" />
88
<meta charset="UTF-8" />
99
<title>Velite | Documentation</title>
1010
<link rel="stylesheet" href="assets/theme.css" />
1111
</head>
1212
<body>
13-
<div id="app"></div>
13+
<div id="app">
14+
<svg viewBox="0 0 90 60" fill="#789a">
15+
<style>
16+
@keyframes a1 {
17+
0%,
18+
57%,
19+
to {
20+
transform: translate(0);
21+
}
22+
28% {
23+
transform: translateY(-2px);
24+
}
25+
}
26+
.c {
27+
animation: a1 1s infinite ease-in;
28+
}
29+
.c2 {
30+
animation-delay: 0.1s;
31+
}
32+
.c3 {
33+
animation-delay: 0.2s;
34+
}
35+
</style>
36+
<circle class="c c1" cx="42" cy="30" r="1" />
37+
<circle class="c c2" cx="45" cy="30" r="1" />
38+
<circle class="c c3" cx="48" cy="30" r="1" />
39+
</svg>
40+
</div>
1441
<script>
1542
window.$docsify = { repo: 'zce/velite', homepage: 'readme.md' }
1643
</script>

docs/reference.md

Whitespace-only changes.

0 commit comments

Comments
 (0)