diff --git a/index.html b/index.html index f5c876f..c32686d 100644 --- a/index.html +++ b/index.html @@ -1,105 +1,132 @@ - - Blorb - - + + Blorb's Website + + + + + + + + + +
+ Home + News + Cloud + Contact + About +
+ +
+

Home

+

Welcome to my little page!

+

I am Blorb, also known as confusedcatgirl, and I generate AI Artifacts as a Hobby!

+

I also like to draw sometimes, and code in various languages from time to time.

+

Most of the time, I am pretty laid back, and I like to talk about video games too!

+

I like to mess around with game engines, and see what I can make with them.

+
+

While I like to use AI tools, I am extremely hypocritical about using AI in business,

+

or aggressively promoting it, or calling things that should not be called that an "AI".

+

I also believe that AI is a tool that should be used more carefully, and not to create

+

stuff like deepfakes. Another one of my beliefs is that AI media should be something

+

that cannot be demanded money for. After all, it is essentially just copying homework.

+
+

This page is rather short as of right now, but I hope to extend it into a lot more!

+
+ +
+

News

+
+
+

+

+ +
+ +
+

+

+ +
+ +
+

+

+ +
- -

Partially NSFW

- -
- - + More News +
+ +
+

Cloud

+

Running locally at my place, this server is only available to a select few. It has been properly configured to utilize HSTS and HTTPS.

+

Only a select few, including myself, have access to it, mostly to manage tasks more easily, but also to store files etc.

+

It is based on nextcloud, and is very easy to set up for your own home usage, so go check them out!

+ + Continue to the Cloud Login +
+ +
+

Contact

+ +

Safe for Work:

+
+ +
-

NSFW

- -
- +

Can contain NSFW content:

+
+ +
- - - - - +
+

About

+

© 2023 - 2024 confusedcatgirl

+

Images used in the News Section have their links in "confusedblorb.org/news.json". These belong to their respective owners.

+ Banner by mooshieblob 2024

+ Image by Yuuki Tatsuya 2011 +

+
+ + \ No newline at end of file diff --git a/news.html b/news.html new file mode 100644 index 0000000..5509009 --- /dev/null +++ b/news.html @@ -0,0 +1,75 @@ + + + + + Blorb's Website - News + + + + + + + +
+ Home + News + About +
+ +
+

News

+
+ +
+
+ +
+

About

+

© 2023 - 2024 confusedcatgirl

+

Images used in the News Section have their links in "confusedblorb.org/news.json". These belong to their respective owners.

+ Banner by mooshieblob 2024

+ Image by Yuuki Tatsuya 2011 +

+
+ + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..11574bd --- /dev/null +++ b/style.css @@ -0,0 +1,132 @@ +body { + margin: 0; + + background-image: url('https://raw.githubusercontent.com/confusedcatgirl/confusedcatgirl.github.io/refs/heads/main/background.webp'); + background-attachment: fixed; + background-size: cover; +} + +p { + padding-left: 32px; +} + +h2 { + padding-left: 16px; +} + +.banner { + width: 38%; + display: block; + margin-left: auto; + margin-right: auto; + padding-top: 1%; +} + +.button { + background-image: linear-gradient(#ddddff, #aaaaff); + color: black; + margin: 10px 10px 10px auto; + border-radius: 15px; + font-size: large; + font-family: 'Trebuchet MS', sans-serif; + max-width: 100px; + padding: 10px 30px 10px 40px; + text-decoration: none; + display: flex; +} + +.button:hover { + background-image: linear-gradient(#aaaaff, #ddddff); +} + +.text_area { + overflow: hidden; + background-color: rgba(124, 124, 182, 0.4); + color: white; + display: inline-flexbox; + border-radius: 20px; + margin: 2%; + backdrop-filter: blur(6px); + padding: 0% 1% 1% 1%; + font-family: 'Trebuchet MS', sans-serif; +} + +.news_area { + display: flex; + overflow: hidden; + margin-bottom: 10px; +} + +.news_div { + background-color: rgb(221, 221, 255); + color: black; + font-family: 'Trebuchet MS', sans-serif; + width: 31.4%; height: 10%; + padding: 1px 10px 5px 10px; + margin-left: 10px; + border-radius: 15px; +} + +.news_image { + width: 100%; + border-radius: 15px; + height: 300px; + object-fit: cover; +} + +.icon { + width: 64px; + display: flex; + filter: invert(1); +} + +.centered { + display: flex; + justify-content: center; + align-items: center; +} + +.topnav { + overflow: hidden; + background-color: rgba(51, 51, 112, 0.4); + color: white; + border-radius: 10px; + margin: 1%; + backdrop-filter: blur(6px); +} + +.topnav a { + float: left; + color: #f2f2f2; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + border-radius: 10px; + font-family: 'Trebuchet MS', sans-serif; +} + +.topnav a.active { + background-image: linear-gradient(#6666aa, #444488); + color: white; + font-size: large; + margin: 10px 0px 10px 10px; + height: 23px; +} + +.topnav a.active:hover { + background-image: linear-gradient(#444488, #6666aa); +} + +.topnav a.inactive { + background-image: linear-gradient(#ddddff, #aaaaff); + color: black; + margin: 14px 0px 14px 10px; + font-size: small; + height: 15px; + display: block; +} + +.topnav a.inactive:hover { + background-image: linear-gradient(#aaaaff, #ddddff); +} \ No newline at end of file