diff --git a/components/footer.js b/components/footer.js index bf55da8..7f61656 100644 --- a/components/footer.js +++ b/components/footer.js @@ -4,7 +4,7 @@ const Header = () => (
-

Made with love by Mid

+

Made with by Midblep

diff --git a/pages/commissions.js b/pages/commissions.js index 272e7e7..01f0e85 100644 --- a/pages/commissions.js +++ b/pages/commissions.js @@ -15,11 +15,72 @@ export default function Commissions() {
-
-
-

Commissions

-
-
+
+

Commissions

+ +
+
+

Headshot Icon

+

15+ pounds

+
+ +
+ + +
+
+ +
+
+

Full body artworks

+

25+ pounds for one peep

+
+ +
+ + +
+
+ +
+
+

Ref sheets

+

15+ pounds extras

+
+ +
+ + +
+
+ +
+
+

NSFW Commissions

+

30+ pounds per a character

+
+ +
+ + +
+
+ +
+
+

Large Group Artworks

+

+ 100+ pounds for 8 peeps
+ 15+ pounds per an extra peep +

+
+ +
+ + +
+
+
diff --git a/pages/contact.js b/pages/contact.js index 9bfca98..f2313ae 100644 --- a/pages/contact.js +++ b/pages/contact.js @@ -15,10 +15,15 @@ export default function Contact() {
-
-
-

Contact

-
+
+

Contact

+
+ +
+ Twitter + Twitch + Trello + Ko-fi
diff --git a/pages/gallery.js b/pages/gallery.js index aaf8a25..14341b5 100644 --- a/pages/gallery.js +++ b/pages/gallery.js @@ -15,10 +15,8 @@ export default function Gallery() {
-
-
-

Gallery

-
+
+

Gallery

diff --git a/pages/index.js b/pages/index.js index e1aad24..dfe048f 100644 --- a/pages/index.js +++ b/pages/index.js @@ -26,38 +26,32 @@ export default function Index() {
-
-
-
- -
-

Hi, I'm Trick!

-

""

-
-
- +
+
+
-

About me

-

- I'm a gay femboy nurse fox who likes figure skating, running and dancing, - addicted to vr and video making and I'm always listening to music, - oh and I play dnd... And that's just about me in a nutshell. -

+

Hi, I'm Trick!

+

-
-
- +

About me

+

+ I'm a gay femboy nurse fox who likes figure skating, running and dancing, + addicted to vr and video making and I'm always listening to music, + oh and I play dnd... And that's just about me in a nutshell. +

+
+ Twitter + Twitch + Trello + Ko-fi +
+
diff --git a/public/trickdounut.png b/public/trickdounut.png new file mode 100644 index 0000000..42cb17e Binary files /dev/null and b/public/trickdounut.png differ diff --git a/public/vercel.svg b/public/vercel.svg deleted file mode 100644 index fbf0e25..0000000 --- a/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/public/vulpirius_foxx_headshot.png b/public/vulpirius_foxx_headshot.png new file mode 100644 index 0000000..f79b58c Binary files /dev/null and b/public/vulpirius_foxx_headshot.png differ diff --git a/styles/Commissions.module.css b/styles/Commissions.module.css index 573cc44..8bd8d2d 100644 --- a/styles/Commissions.module.css +++ b/styles/Commissions.module.css @@ -1,3 +1,10 @@ -.owo { - color: blue; +.row { + display: flex; + justify-content: space-between; + flex-direction: row; + gap: 2em; +} + +.row img { + width: 200px; } \ No newline at end of file diff --git a/styles/Index.module.css b/styles/Index.module.css index ab7e3f2..4daa599 100644 --- a/styles/Index.module.css +++ b/styles/Index.module.css @@ -15,11 +15,26 @@ .avatar > img { box-shadow: 2px 2px 10px rgba(0,0,0,0.2); border-radius: 100%; - max-height: 100%; + max-width: 100%; transition-duration: 0.3s; } .avatar > img:hover { transition-duration: 0.3s; transform: scale(1.1) rotate(-20deg); +} + + +/* mobile */ +@media (max-aspect-ratio: 1/1) { + .avatar { + flex-direction: column; + height: unset; + text-align: center; + gap: unset; + } + + .avatar h1 { + font-size: 1.5em; + } } \ No newline at end of file diff --git a/styles/components/Header.module.css b/styles/components/Header.module.css index f908a87..623717b 100644 --- a/styles/components/Header.module.css +++ b/styles/components/Header.module.css @@ -56,5 +56,35 @@ .colorfulbar { box-shadow: -2px -2px 10px rgba(0,0,0,0.2); background: linear-gradient(to left, rgba(255,85,200,1) 0%, rgba(79,79,255,1) 100%, rgba(0,212,255,1) 100%); + background-size: 200% 100%; height: 8px; + animation-name: colorbar-anim; + animation-duration: 5s; + animation-iteration-count: infinite; + animation-timing-function: ease-in-out; +} + +@keyframes colorbar-anim { + 0% { + background-position: 0%; + } + 50% { + background-position: 100%; + } + 100% { + background-position: 0; + } +} + +/* mobile */ +@media(max-aspect-ratio: 4/3) { + .menu > div { + flex-direction: column; + justify-content: center; + align-items: center; + } + + .menu { + padding: 0.5em; + } } \ No newline at end of file diff --git a/styles/globals.css b/styles/globals.css index 70f7b3e..45f692f 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -27,6 +27,8 @@ h1, h2, h3 { text-decoration: underline; } + +/* page structure */ .page { min-height: 100vh; background-color: #1B1C22; @@ -35,7 +37,7 @@ h1, h2, h3 { } .container { - max-width: 1200px; + width: 1200px; margin: 0 auto; } @@ -46,6 +48,8 @@ h1, h2, h3 { flex-direction: row; } + +/* page elements */ .card { border-radius: 10px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); @@ -55,14 +59,13 @@ h1, h2, h3 { padding: 2em; color: white; background-color: #25262C; + width: 100%; + flex-grow: 3; } -.card p { - font-size: 1.1em; -} +/* buttons in the content field */ .content .buttons { - width: 300px; display: flex; flex-direction: column; gap: 1em; @@ -86,4 +89,18 @@ h1, h2, h3 { .content .buttons > a:hover { transform: scale(0.95); transition-duration: 0.1s; +} + + +/* mobile */ +@media(max-aspect-ratio: 5/4) { + .content { + flex-direction: column; + } +} + +@media(max-width: 1200px) { + .container { + width: 100%; + } } \ No newline at end of file