From 33850ed51a17502416e2d02d90bd90b2ca46f2fe Mon Sep 17 00:00:00 2001 From: Juli Date: Tue, 4 Jun 2024 08:08:24 +0000 Subject: [PATCH] made website --- .gitignore | 51 +++++++++++++++++++++++++++++++ .replit | 12 ++++++++ README.md | 3 +- index.html | 1 - index.php | 42 ++++++++++++++++++++++++++ replit.nix | 5 ++++ style.css | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 200 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 .replit delete mode 100644 index.html create mode 100644 index.php create mode 100644 replit.nix create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..224d0b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# Composer +composer.phar +/vendor/ + +# CakePHP 3 + +/vendor/* +/config/app.php + +/tmp/cache/models/* +!/tmp/cache/models/empty +/tmp/cache/persistent/* +!/tmp/cache/persistent/empty +/tmp/cache/views/* +!/tmp/cache/views/empty +/tmp/sessions/* +!/tmp/sessions/empty +/tmp/tests/* +!/tmp/tests/empty + +/logs/* +!/logs/empty + +# CakePHP 2 + +/app/tmp/* +/app/Config/core.php +/app/Config/database.php +/vendors/* + +# the composer package lock file and install directory +# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +# /composer.lock +/fuel/vendor + +# the fuelphp document +/docs/ + +# you may install these packages with `oil package`. +# http://fuelphp.com/docs/packages/oil/package.html +# /fuel/packages/auth/ +# /fuel/packages/email/ +# /fuel/packages/oil/ +# /fuel/packages/orm/ +# /fuel/packages/parser/ + +# dynamically generated files +/fuel/app/logs/*/*/* +/fuel/app/cache/*/* +/fuel/app/config/crypt.php \ No newline at end of file diff --git a/.replit b/.replit new file mode 100644 index 0000000..46d4bc8 --- /dev/null +++ b/.replit @@ -0,0 +1,12 @@ +run = "php -S 0.0.0.0:8000 -t ." + +[nix] +channel = "stable-22_11" + +[deployment] +run = ["sh", "-c", "php -S 0.0.0.0:8000 -t ."] +deploymentTarget = "cloudrun" + +[[ports]] +localPort = 8000 +externalPort = 80 diff --git a/README.md b/README.md index 6eab260..773fead 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -## Hi +juli@meowcity:~/about_me$ cat README.md +Hi! I am Juli a Finnish furry from '09(thats 14 years old). I go by Juli or Julimiro, my preferred pronouns are he/him but any are fine tbh. [My website](https://julimiro.eu) diff --git a/index.html b/index.html deleted file mode 100644 index 64963a1..0000000 --- a/index.html +++ /dev/null @@ -1 +0,0 @@ -I'm working on it 😭 (maybe) diff --git a/index.php b/index.php new file mode 100644 index 0000000..edc9dd9 --- /dev/null +++ b/index.php @@ -0,0 +1,42 @@ + + + + + cat README.md + + + +
+ juli@meowcity:~/about_me$ cat README.md
+
+ Hi!
+ I am Juli a Finnish furry from '09(thats 14 years old). I go by Juli or Julimiro, my preferred pronouns are he/him but any are fine tbh.
+
+ <https://julimiro.eu>
+ <https://eepykitty.lol/@juli>
+ <https://www.last.fm/user/Julimiro>
+ <https://www.youtube.com/@JuliTheFurry>
+
+ visitors!
+
+
+ Meow + +
+ + diff --git a/replit.nix b/replit.nix new file mode 100644 index 0000000..b93b0c0 --- /dev/null +++ b/replit.nix @@ -0,0 +1,5 @@ +{ pkgs }: { + deps = [ + pkgs.php82 + ]; +} \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..541ed87 --- /dev/null +++ b/style.css @@ -0,0 +1,88 @@ +body { + background-color: rgb(0, 27, 41); + /* */ + + color: rgb(255, 255, 255); + font-family: "Roboto Mono", monospace +} + +.container { + position: relative +} + +.header { + position: relative; + left: 50%; + top: 0%; + transform: translateX(-50%); + text-align: center +} + +.header ul { + text-decoration: none; + list-style-type: none +} + +.header h1 { + font-size: 3em +} + +.header a { + font-size: 1.25em; + margin: 2px; + color: rgb(255, 255, 255); + text-decoration: none +} + +.button { + font-family: "Roboto Mono", monospace; + background-color: #008cba; + border: none; + color: #fff; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + cursor: pointer +} + +.button:hover { + font-family: "Roboto Mono", monospace; + background-color: #006384; + border: none; + color: #fff; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + cursor: pointer +} + +.main { + position: relative; + top: 20%; + left: 50%; + transform: translate(-50%,20%); + text-align: center; + width: 60%; + border-width: 2px; + border-style: solid; + padding: 30px; + text-align: left; + background-color: #000; +} + +a { + color: #FFF; +} + +#prompt_name { + color: #14A10C; +} +#path { + color: #3B78FE; +} \ No newline at end of file