about summary refs log tree commit diff
path: root/bskyembed/src/index.css
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-04-12 15:52:26 +0100
committerGitHub <noreply@github.com>2024-04-12 15:52:26 +0100
commitad97d4350c55055c3fcf084915a0a067c09939da (patch)
tree885baa92f3aa0a50ef0e5226e89aaabe7296ad8f /bskyembed/src/index.css
parent24bd3d6986a8080a34836b34ee1dbd88357d1cb5 (diff)
downloadvoidsky-ad97d4350c55055c3fcf084915a0a067c09939da.tar.zst
[Embeds] Create vite project and add to build pipeline (#3448)
* add bskyembed vite app

* create build script (temp until embedr is ready)
Diffstat (limited to 'bskyembed/src/index.css')
-rw-r--r--bskyembed/src/index.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/bskyembed/src/index.css b/bskyembed/src/index.css
new file mode 100644
index 000000000..b8c94dfb5
--- /dev/null
+++ b/bskyembed/src/index.css
@@ -0,0 +1,29 @@
+html, body {
+	height: 100%;
+	width: 100%;
+	padding: 0;
+	margin: 0;
+	background: #FAFAFA;
+	font-family: 'Helvetica Neue', arial, sans-serif;
+	font-weight: 400;
+	color: #444;
+	-webkit-font-smoothing: antialiased;
+	-moz-osx-font-smoothing: grayscale;
+}
+
+* {
+	box-sizing: border-box;
+}
+
+#app {
+  height: 100%;
+  text-align: center;
+  background-color: #673ab8;
+  color: #fff;
+  font-size: 1.5em;
+  padding-top: 100px;
+}
+
+.link {
+  color: #fff;
+}