aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-09-25 01:39:56 +0200
commitc0af3a63d6cd7b893ca23aeb442e776955bc2c91 (patch)
tree0fec30f2bc12503e6095271dd32159322355c5c6 /src/lib
parentfix: incorrect social link hover color transition (diff)
downloadpml68.dev-c0af3a63d6cd7b893ca23aeb442e776955bc2c91.tar.gz
feat: "rewrite" in pure HTML/CSS
Diffstat (limited to '')
-rw-r--r--assets/wave1.svg (renamed from src/lib/assets/wave1.svg)0
-rw-r--r--assets/wave2.svg (renamed from src/lib/assets/wave2.svg)0
-rw-r--r--src/lib/assets/css/projects.scss64
-rw-r--r--src/lib/index.ts1
-rw-r--r--src/lib/projects.json28
-rw-r--r--src/lib/socials.json28
6 files changed, 0 insertions, 121 deletions
diff --git a/src/lib/assets/wave1.svg b/assets/wave1.svg
index 76699ab..76699ab 100644
--- a/src/lib/assets/wave1.svg
+++ b/assets/wave1.svg
diff --git a/src/lib/assets/wave2.svg b/assets/wave2.svg
index 95d41a5..95d41a5 100644
--- a/src/lib/assets/wave2.svg
+++ b/assets/wave2.svg
diff --git a/src/lib/assets/css/projects.scss b/src/lib/assets/css/projects.scss
deleted file mode 100644
index 03376a1..0000000
--- a/src/lib/assets/css/projects.scss
+++ /dev/null
@@ -1,64 +0,0 @@
-$font-min: 16px;
-$font-desired: 1vw;
-$font-max: 32px;
-
-.project-container {
- padding: 0 10vw;
- display: grid;
- grid-template-columns: repeat(2, minmax(40vw, 1fr));
- height: 80dvh;
- align-items: center;
- justify-items: center;
- overflow: auto;
- align-content: center;
- -ms-overflow-style: none;
- scrollbar-width: none;
-}
-
-.project-container::-webkit-scrollbar {
- display: none;
-}
-
-.project {
- margin: 15px 15px;
- font-size: clamp($font-min, $font-desired, $font-max);
- padding: 25px 10px;
- display: flex;
- align-items: center;
- background: #1e1e2e;
- transition: transform .3s ease-in-out;
- border-radius: 2vh;
- box-shadow: -12px -12px 28px #27273b73, 12px 12px 20px #12121c73;
-}
-
-.spacer {
- height: 20dvh;
- display: flex;
- flex-direction: column;
- justify-content: end;
- z-index: 30;
-}
-
-.home {
- font-size: clamp($font-min, 2.5vw, 48px);
- margin-bottom: 15px;
-}
-
-.project-icon {
- width: 4rem;
- height: 4rem;
- margin-right: 10px;
-}
-
-@media (max-width: 839px) {
- .project-container {
- grid-template-columns: minmax(90vw, 1fr);
- padding: 0 5vw;
- align-content: normal;
- }
-}
-
-a:hover .project {
- transform: scale(103%);
- transition: transform .3s ease-in-out;
-}
diff --git a/src/lib/index.ts b/src/lib/index.ts
deleted file mode 100644
index 856f2b6..0000000
--- a/src/lib/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-// place files you want to import through the `$lib` alias in this folder.
diff --git a/src/lib/projects.json b/src/lib/projects.json
deleted file mode 100644
index 6296dde..0000000
--- a/src/lib/projects.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "projects": [
- {
- "icon": "https://pml68.dev/pml68.png",
- "link": "https://sr.ht/~pml68/pml68.dev",
- "title": "pml68",
- "description": "My personal website — the one you're currently viewing"
- },
- {
- "icon": "https://iced.rs/logo.svg",
- "link": "https://sr.ht/~pml68/iced-builder",
- "title": "iced Builder",
- "description": "UI builder for iced, built with iced. (WIP)"
- },
- {
- "icon": "https://avatars.githubusercontent.com/u/209838582?s=200&v=4",
- "link": "https://github.com/foghorn-rs/foghorn",
- "title": "Foghorn",
- "description": "Signal Messenger client written in Rust and Iced"
- },
- {
- "icon": "https://iced.rs/logo.svg",
- "link": "https://sr.ht/~pml68/iced_dialog",
- "title": "iced_dialog",
- "description": "Custom dialog for iced"
- }
- ]
-}
diff --git a/src/lib/socials.json b/src/lib/socials.json
deleted file mode 100644
index c6a4a55..0000000
--- a/src/lib/socials.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "socials": [
- {
- "name": "github",
- "link": "https://github.com/pml68"
- },
- {
- "name": "sourcehut",
- "link": "https://sr.ht/~pml68"
- },
- {
- "name": "dev",
- "link": "https://dev.to/pml68"
- },
- {
- "name": "steam",
- "link": "https://steamcommunity.com/id/nigmaballs"
- },
- {
- "name": "telegram",
- "link": "https://t.me/pml68_1"
- },
- {
- "name": "email",
- "link": "mailto:contact@pml68.dev"
- }
- ]
-}