-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (76 loc) · 3.22 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="./assets/bubble-tea.png">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta property="og:title" content="bubblepedia">
<meta property="og:description" content="Bubble-themed responsive Wikipedia interface.">
<meta property="og:image" content="https://github.com/kw-8/bubblepedia/blob/main/assets/ss_bubblepedia.png?raw=true">
<meta property="og:url" content="https://kw-8.github.io/bubblepedia/">
<link rel="stylesheet" href="./dist/main.css" />
<script src="./dist/main.js"></script>
<title>bubblepedia</title>
<!-- greensock api: core + plugins -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/MotionPathPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/PixiPlugin.min.js"></script>
<!-- google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Dongle:wght@300;400;700&Noto+Serif:wght@400;700&family=Noto+Sans+JP:wght@400;700&family=Noto+Sans+SC:wght@400;700&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Serif+JP:wght@400;700&family=Noto+Serif+SC:wght@400;700&family=Playfair+Display:wght@600&display=swap"
rel="stylesheet">
</head>
<body>
<div class="frost"></div>
<header>
<p class="logo">bubblepedia</p>
<h1>oº Bubblepedia 。</h1>
<form class="wiki-form">
<input placeholder="Enter a search" type="search" class="wiki-input">
<ul class="search-results"></ul>
</form>
</header>
<div class="main">
<div class="pictures"></div>
<div class="article-section">
<div class="section-content"></div>
</div>
</div>
<footer>
<p>
<a href="https://www.linkedin.com/in/katherine-wu-ca"
target="_blank" rel="noopener noreferrer">
<img src="./assets/linkedin.png" alt="linkedin">
</a>
<a href="https://github.com/kw-8"
target="_blank" rel="noopener noreferrer">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Octicons-mark-github.svg/1200px-Octicons-mark-github.svg.png" alt="github">
</a>
<a href="https://angel.co/u/katherine-wu-18" target="_blank" rel="noopener noreferrer">
<img src="https://www.nicepng.com/png/full/124-1245731_angellist-filled-icon-angellist-logo-svg.png" alt="angellist">
</a>
</p>
<div class="related-articles">
<button class="seealso-button">see also</button>
</div>
<p>
<button class="readme-button">readme</button>
</p>
</footer>
<div class="fade-bg" show="false">
<ul class="related-article-list"></ul>
<div class="readme"></div>
</div>
<!-- goo filter here -->
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
</body>
</html>