-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
37 lines (30 loc) · 928 Bytes
/
about.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>me</title>
<meta name="description" content="knowledge">
<!--meta name="tommy" content="me"-->
<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/98.css" />
<link rel="stylesheet" href="css/main.css?v=1.0">
<!-- JS -->
<script src="https://unpkg.com/[email protected]/dist/jquery.min.js"></script>
<script src="js/tinycolor.js"></script>
<script>
$(document).ready(function () {
var color = tinycolor.random().lighten(30);
$(":root").css({"--bcolor": tinycolor(color.toString()), "--bcolor-overlay": tinycolor(color.toString()).desaturate(10), "--hcolor": tinycolor(color.toString()).spin(20)});
});
</script>
</head>
<body>
<header class="annoying">
<h1>About me</h1>
</header>
<div class="bg"></div>
<div class="content">
<p>hello 🌞</p>
</div>
</body>
</html>