diff --git a/src/components/ImageSection.astro b/src/components/ImageSection.astro
index b2c18db..2e1a2fe 100644
--- a/src/components/ImageSection.astro
+++ b/src/components/ImageSection.astro
@@ -11,11 +11,14 @@ import '../styles/components/ImageSection.scss'
---
-
{title}
-
-
{description}
-
{note}
+
+
+
{description}
+
+
diff --git a/src/pages/acknowledgements.astro b/src/pages/acknowledgements.astro
index 6cf646a..cbbf5d0 100644
--- a/src/pages/acknowledgements.astro
+++ b/src/pages/acknowledgements.astro
@@ -140,6 +140,23 @@ import Layout from "@layouts/Layout.astro";
>
+
+
+ Splatoon3.ink
+ |
+
+ MIT License
+ |
+
+ website
+ |
+
diff --git a/src/pages/features.astro b/src/pages/features.astro
index 4d3ada3..577f52d 100644
--- a/src/pages/features.astro
+++ b/src/pages/features.astro
@@ -1,43 +1,58 @@
---
import ImageSection from "@components/ImageSection.astro";
import Layout from "@layouts/Layout.astro";
+import '../styles/pages/features.scss'
---
- Features
-
-
-
-
-
+
+
Features
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/styles/components/ImageSection.scss b/src/styles/components/ImageSection.scss
index c3f6a32..cd2a200 100644
--- a/src/styles/components/ImageSection.scss
+++ b/src/styles/components/ImageSection.scss
@@ -1,34 +1,56 @@
.ImageSection {
- //background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/tapes-bg.png"), linear-gradient(180deg,rgba(2,0,36,.1) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,.25) 100%);
+ border-radius: 0.5rem;
- .backgroundImage{
- border-radius: 0.5rem;
+ max-width: 100vw;
+ max-height: 550px;
+
+ height: 550px;
+ width: 550px;
+
+ position: relative;
+
+ background-size: contain;
+ background-color: rgba(183, 183, 183, 0.4);
+ backdrop-filter: blur(5px);
+ background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/tapes-bg.png"), linear-gradient(180deg,rgba(2,0,36,.1) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,.25) 100%);
+
+ padding: 1rem;
+
+ .cutout {
+ //background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/cutout.png");
background-size: contain;
- background-color: rgb(25 215 25);
- -webkit-mask-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/card-header.svg");
- mask-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/card-header.svg");
- -webkit-mask-position: top;
- mask-position: top;
- -webkit-mask-size: 2000px auto;
- mask-size: 2000px auto;
- -webkit-mask-repeat: no-repeat;
- mask-repeat: no-repeat;
+ background-repeat: no-repeat;
+ //height: 3rem;
+ margin: auto;
}
.content {
-
+ display: flex;
+ flex-direction: column;
+ align-items: center;
}
+ .imgDiv {
+ background-color: rgba(0, 0, 0, 0.4);
+ backdrop-filter: blur(5px);
- h1 {
+ padding: 0.5rem;
+ border-radius: 0.5rem;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+ img {
+ border-radius: 0.5rem;
+ max-width: 80%;
+ max-height: 280px;
+ }
+
+ p {
+ padding-top: 2px;
+ font-size: 0.8rem;
+ }
}
- img {
-
- }
-
- p {
-
- }
}
diff --git a/src/styles/pages/features.scss b/src/styles/pages/features.scss
new file mode 100644
index 0000000..28d7c09
--- /dev/null
+++ b/src/styles/pages/features.scss
@@ -0,0 +1,33 @@
+.container {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+
+ .title {
+ font-size: 3rem;
+ text-align: center;
+ margin-bottom: 1.2rem;
+ }
+
+ .centered {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .gridlayout div {
+ margin: 1rem;
+ }
+}
+
+@media (min-width: 1100px) {
+ .gridlayout {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ align-items: center;
+
+ div {
+ grid-column: span 1;
+ }
+ }
+}