summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2021-12-30 11:23:55 +0100
committerMinteck <contact@minteck.org>2021-12-30 11:23:55 +0100
commit32fc8db91f67527baa96c357518e2f6dd030090b (patch)
treeb30c28e7236675889d46449e2f566c7e104129ea /assets
downloadpony-32fc8db91f67527baa96c357518e2f6dd030090b.tar.gz
pony-32fc8db91f67527baa96c357518e2f6dd030090b.tar.bz2
pony-32fc8db91f67527baa96c357518e2f6dd030090b.zip
Initial commit
Diffstat (limited to 'assets')
-rw-r--r--assets/fonts.ttfbin0 -> 39908 bytes
-rw-r--r--assets/icon.pngbin0 -> 1050 bytes
-rw-r--r--assets/main.css135
-rw-r--r--assets/ponies/footer.gifbin0 -> 3718 bytes
-rw-r--r--assets/ponies/home.gifbin0 -> 16023 bytes
5 files changed, 135 insertions, 0 deletions
diff --git a/assets/fonts.ttf b/assets/fonts.ttf
new file mode 100644
index 0000000..5a3a3c2
--- /dev/null
+++ b/assets/fonts.ttf
Binary files differ
diff --git a/assets/icon.png b/assets/icon.png
new file mode 100644
index 0000000..8ba3a51
--- /dev/null
+++ b/assets/icon.png
Binary files differ
diff --git a/assets/main.css b/assets/main.css
new file mode 100644
index 0000000..813abfa
--- /dev/null
+++ b/assets/main.css
@@ -0,0 +1,135 @@
+@font-face {
+ src: url("/assets/fonts.ttf");
+ font-family: Pixellari;
+}
+
+.container {
+ width: 60vw;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+@media (max-width: 700px) {
+ .container {
+ width: 75vw !important;
+ }
+}
+
+@media (max-width: 500px) {
+ .container {
+ width: 95vw !important;
+ }
+}
+
+body {
+ background: #0c031d;
+ color: #a963ff;
+ font-family: Pixellari, system-ui, -apple-system, sans-serif;
+ font-size: 18px;
+}
+
+.b {
+ border: 1px solid #a963ff;
+ padding: 10px;
+ margin-bottom: 20px;
+}
+
+.pony {
+ image-rendering: pixelated;
+}
+
+#home-pony {
+ width: 15vw;
+}
+
+#header {
+ display: grid;
+ grid-template-columns: 15vw 1fr;
+}
+
+#header-content {
+ margin-left: 20px;
+ display: flex;
+ align-items: center;
+}
+
+#header-intro-1 {
+ margin-bottom: 0;
+}
+
+#header-intro-2 {
+ margin-top: 0;
+}
+
+#header-fact {
+ text-align: center;
+}
+
+.link {
+ color: #844ec7;
+}
+
+.link:hover {
+ color: #623a94;
+}
+
+.link:active, .link:focus {
+ color: #402661;
+}
+
+.link-el {
+ cursor: pointer;
+ display: block;
+ margin: -1px;
+ padding: 10px;
+ border: 1px solid #a963ff;
+}
+
+.links-box {
+ padding: 0;
+}
+
+.container.links-box {
+ width: calc(60vw + 20px);
+}
+
+@media (max-width: 700px) {
+ .container.links-box {
+ width: calc(75vw + 20px) !important;
+ }
+}
+
+@media (max-width: 500px) {
+ .container.links-box {
+ width: calc(95vw + 20px) !important;
+ }
+}
+
+.link-el {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+.link-el:hover {
+ background: rgba(169, 99, 255, 0.1);
+}
+
+.link-el:active, .link-el:hover {
+ background: rgba(169, 99, 255, 0.25);
+}
+
+#footer-intro {
+ margin: 0 -8px;
+ border-bottom: none;
+ border-top: 1px solid;
+}
+
+#footer {
+ text-align: center;
+}
+
+#footer-pony {
+ margin-top: 10px;
+ width: 128px;
+ max-width: 100vw;
+} \ No newline at end of file
diff --git a/assets/ponies/footer.gif b/assets/ponies/footer.gif
new file mode 100644
index 0000000..3fa54b9
--- /dev/null
+++ b/assets/ponies/footer.gif
Binary files differ
diff --git a/assets/ponies/home.gif b/assets/ponies/home.gif
new file mode 100644
index 0000000..1c0e8fa
--- /dev/null
+++ b/assets/ponies/home.gif
Binary files differ