-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrvv.html
87 lines (84 loc) · 3.32 KB
/
rvv.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="data:image/svg+xml,
<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 122 122%22>
<rect fill=%22Grey%22 width=%22122%22 height=%22122%22/>
<path fill=%22blue%22 d=%22m 122,61 v 61 H 78 Z%22/>
<path fill=%22gold%22 d=%22m 36,0 c 41,6 43,68 0,75 l 30,35 56,-79 V 0 Z%22/>
<path fill=%22blue%22 d=%22m 0,17 h 30 c 27,2 27,40 0,42 H 8 v 9 l 44,54 H 0 Z%22/>
</svg>">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<title>RVV</title>
<script src="app-rvv.js"></script>
<style>
body {
background-color: #ccc;
font-family: 'IBM Plex Sans';
}
.sidenav {
height: 100%;
width: 240px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #222;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 4px 8px 4px 16px;
text-decoration: none;
font-size: 24px;
color: #fff;
display: block;
}
.count {
border-radius: 16px;
margin: 4px;
padding: 2px 6px;
background: #555;
color: #ddd;
}
.sidenav a:hover {
color: #f0c70c;
}
.main {
margin: 32px 10px 32px 260px; /* Same as the width of the sidenav */
font-size: 18px; /* Increased text to enable scrolling */
padding: 10px 10px;
}
img {
margin: 8px 8px 8px 8px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
</head>
<body onload="RVV('content')">
<div id="sidenav" class="sidenav">
</div>
<div id="main" class="main">
</div>
<div id="timestamp" style="color:#888; position: fixed; right: 64px; bottom: 16px;"></div>
<a style="position: fixed; right: 16px; bottom: 16px;" href="https://github.com/drom/rv">
<svg viewBox="0 0 96 96" width="32" height="32" xmlns="http://www.w3.org/2000/svg">
<path fill="#aaffcc88" d="M49 0 C 22 0 0 22 0 49 c 0 22 14 40 33 47 2 1 3 -1 3 -2 0 -1 0 -5 0 -9 -14 3 -16 -6 -16 -6 -2 -6 -6 -7 -5 -7 -4 -3 0 -3 0 -3 5 0 7 5 8 5 4 7 11 5 14 4 0 -3 3 -5 3 -6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z"/>
</svg>
</a>
</body>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MJTGFNTK2E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MJTGFNTK2E');
</script>
</html>