Skip to content

Commit 4d4ae64

Browse files
committed
Adjust site
1 parent bfdab93 commit 4d4ae64

File tree

2 files changed

+67
-46
lines changed

2 files changed

+67
-46
lines changed

docs/index.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
html,
2+
body {
3+
margin: 0;
4+
padding: 0;
5+
}
6+
7+
body {
8+
font-family: "Arial", sans-serif;
9+
background-color: #071039;
10+
color: #333;
11+
}
12+
13+
.wrapper {
14+
max-width: 800px;
15+
margin: 0 auto;
16+
padding: 2em 2em;
17+
/*
18+
background-color: white;
19+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
20+
*/
21+
}
22+
23+
#logo {
24+
display: block;
25+
max-width: 200px;
26+
margin: 1em auto 0;
27+
}
28+
29+
#reliableapps {
30+
max-width: 250px;
31+
margin: 1em auto;
32+
display: block;
33+
}
34+
35+
h2 {
36+
font-size: 1.6em;
37+
margin-top: 1em;
38+
color: #333;
39+
text-align: center;
40+
}
41+
42+
#pitch {
43+
color: white;
44+
margin: 2em auto;
45+
max-width: 600px;
46+
line-height: 1.8;
47+
text-align: justify;
48+
text-justify: inter-word;
49+
}
50+
51+
#pitch a {
52+
color: #2c82f7;
53+
text-decoration: none;
54+
}
55+
56+
#pitch a:hover {
57+
text-decoration: underline;
58+
}

docs/index.html

Lines changed: 9 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -3,52 +3,9 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Exploding Labs</title>
76
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
8-
<style>
9-
html,
10-
body {
11-
height: 100%;
12-
margin: 0;
13-
}
14-
15-
body {
16-
display: flex;
17-
align-items: center;
18-
justify-content: center;
19-
font-family: sans-serif;
20-
background-color: #071039;
21-
}
22-
23-
.wrapper {
24-
}
25-
26-
.wrapper img#logo {
27-
max-width: 300px;
28-
height: auto;
29-
display: block;
30-
margin: 0 auto;
31-
}
32-
33-
.wrapper img#reliableapps {
34-
max-width: 300px;
35-
margin: 2em auto 0 auto;
36-
display: block;
37-
}
38-
39-
.wrapper p#pitch {
40-
color: white;
41-
max-width: 600px;
42-
margin-top: 2em;
43-
line-height: 180%;
44-
text-align: center;
45-
padding: 0 1em;
46-
a {
47-
color: white;
48-
font-weight: bold;
49-
}
50-
}
51-
</style>
7+
<link rel="stylesheet" href="/index.css" />
8+
<title>Exploding Labs</title>
529
</head>
5310
<body>
5411
<div class="wrapper">
@@ -67,13 +24,19 @@
6724
mission is focused: create software that pays its way.
6825
</p>
6926
</div>
27+
7028
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
7129
<script>
7230
AOS.init();
7331
</script>
32+
7433
<script
34+
id="powersync"
7535
type="text/javascript"
76-
src="https://explodinglabs.github.io/refresh.js/refresh.js"
36+
data-events-uri=":8080/.well-known/mercure"
37+
data-events-topic="powersync"
38+
src="/powersync.dev.js"
39+
async
7740
></script>
7841
</body>
7942
</html>

0 commit comments

Comments
 (0)