-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (79 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paper UI</title>
<meta name="description" content="The Paper UI library allows users to easily import and style a wide range of components with a singular cdn link.">
<meta name="keywords" content="Paper UI, UI library, web development, user interface, customizable components, responsive design, Component Library, css, js, html, CDN, Paper">
<meta name="robots" content="index, follow">
<link rel="icon" type="image/x-icon" href="https://paperui.com/banner/icon.png">
<link rel="apple-touch-icon" href="https://paperui.com/banner/icon.png">
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
<link rel="canonical" href="https://paperui.com">
<meta property="og:title" content="Paper UI">
<meta property="og:site_name" content="Paper UI">
<meta property="og:type" content="website">
<meta property="og:description" content="The Paper UI library allows users to easily import and style a wide range of components with a singular cdn link.">
<meta property="og:url" content="https://paperui.com">
<meta property="og:image" content="https://paperui.com/banner/paper-banner.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Paper UI">
<meta name="twitter:description" content="The Paper UI library allows users to easily import and style a wide range of components with a singular cdn link.">
<meta name="twitter:image" content="https://paperui.com/banner/paper-banner.png">
<style>
#main-container {
justify-content: center;
align-items: center;
flex-direction: column;
display: flex;
height: 100%;
width: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
background-color: #f5f5f5;
overflow-x: hidden;
overflow-y: auto;
font-family: "Inter", sans-serif;
}
a {
text-decoration: underline;
color: #346ddb;
font-family: "Inter", sans-serif;
width: fit-content;
height: fit-content;
font-weight: 400;
font-size: 23px;
}
a:hover {
color: #27498c;
opacity: 0.8;
transition: all 0.1s ease;
}
h1 {
font-weight: 650;
font-size: 87px;
color: #09090b;
font-family: "Inter", sans-serif;
width: fit-content;
height: fit-content;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="main-container">
<h1>Paper UI</h1>
<a href="https://docs.prism-ui.com">Documentation</a>
</div>
</body>
</html>