diff --git a/.gitignore b/.gitignore
index 7b9cfe0..e38a180 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,2 @@
-**/.DS_Store
-docker-compose.yml
-.vscode/
+.DS_Store
+*.tar.gz
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..089574b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,2 @@
+bundle:
+ tar czf ./blisstown-web.tar.gz -C public .
diff --git a/public/index.html b/public/index.html
index 7cd889a..86325fc 100644
--- a/public/index.html
+++ b/public/index.html
@@ -4,7 +4,7 @@
-
+
bliss town
@@ -22,10 +22,10 @@
-
+

-
+
welcome to bliss.town!
diff --git a/public/style/index.css b/public/style/index.css
index 2becc64..b69863f 100644
--- a/public/style/index.css
+++ b/public/style/index.css
@@ -115,3 +115,9 @@
color: var(--on-primary);
border: 1px solid var(--on-primary);
}
+
+@media screen and (max-width: 500px) {
+ .crew-tags {
+ flex-wrap: wrap;
+ }
+}
diff --git a/public/style/main.css b/public/style/main.css
index 22c1508..d6ab666 100644
--- a/public/style/main.css
+++ b/public/style/main.css
@@ -153,13 +153,15 @@ footer:hover {
.title-icon {
position: relative;
- height: 1.2em;
+ width: 1.3em;
+ height: 1.1em;
margin: 0 .1em;
- padding-right: 1.6em;
display: inline-block;
}
.title-icon img {
+ width: 1.4em;
+ height: 1.4em;
position: absolute;
}
@@ -179,3 +181,9 @@ footer:hover {
box-shadow: 0 2px 8px #0c03116e;
}
}
+
+@media screen and (max-width: 500px) {
+ h1 {
+ font-size: 1.2em;
+ }
+}