-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (47 loc) · 1.39 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
<!doctype html>
<html lang="en">
<head>
<title>Sensive</title>
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<style>
* {
box-sizing: border-box;
margin: 0;
}
html, body {
height: 100%;
overflow: hidden;
}
body {
max-width: 350px;
margin: 0 auto;
padding: 3em;
display: flex;
flex-direction: column;
font-size: .875rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
text-align: center;
justify-content: center;
align-items: center;
}
body > * + * {
margin-top: 1em;
}
img {
margin-bottom: 38px;
}
a {
text-decoration: none;
background: linear-gradient(to right, #9790e3, #e58d85);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body>
<img src="sensive.png" alt="Sensive" width="124" height="128" />
<p><strong>Sensive</strong> was a platform designed to manage your creative projects and assets to help you get your work done.</p>
<p>Check our next venture at <strong><a href="https://www.bleep.is/">Bleep</a></strong>.</p>
</body>
</html>