Compare commits

..

7 Commits

Author SHA1 Message Date
4583d9e7bb Use webp for logo.
All checks were successful
Deploy to neocities / deploy (push) Successful in 9s
Also, make the border around the server icon a little thinner.
2026-02-19 23:46:49 -06:00
7aa32d6623 Back to root-relative paths, split CSS to new file.
All checks were successful
Deploy to neocities / deploy (push) Successful in 9s
2026-02-19 23:42:17 -06:00
de30660b15 Use relative path for images.
All checks were successful
Deploy to neocities / deploy (push) Successful in 32s
2026-02-19 22:53:15 -06:00
637b9511f1 Move everything to public folder
All checks were successful
Deploy to neocities / deploy (push) Successful in 9s
2026-02-20 06:40:01 +02:00
3dc38d0905 currently dont have any dependencies
Some checks failed
Deploy to neocities / deploy (push) Failing after 8s
2026-02-20 06:39:01 +02:00
f42e490bbb Revert
Some checks failed
Deploy to neocities / deploy (push) Failing after 49s
2026-02-20 06:37:20 +02:00
7ec93bed16 SPecify full path to repo
Some checks failed
Deploy to neocities / deploy (push) Failing after 3s
2026-02-20 06:35:49 +02:00
10 changed files with 86 additions and 95 deletions

View File

@@ -16,7 +16,7 @@ jobs:
steps: steps:
# The checkout step copies your repo into the action runner. Important! # The checkout step copies your repo into the action runner. Important!
- uses: Autisticats/website@main - uses: actions/checkout@v4
# Set up any tools and build steps here # Set up any tools and build steps here
# This example uses a Node.js toolchain to build a site # This example uses a Node.js toolchain to build a site
# If you don't need Node.js to build your site, you can omit this. # If you don't need Node.js to build your site, you can omit this.
@@ -25,10 +25,10 @@ jobs:
with: with:
node-version: lts/* node-version: lts/*
# If you have a different build process, replace this with your own build steps # If you have a different build process, replace this with your own build steps
- name: Install deps and build #- name: Install deps and build
run: | # run: |
npm i # npm i
npm run build # npm run build
# When the dist_dir is ready, deploy it to neocities # When the dist_dir is ready, deploy it to neocities
# Here we deploy the folder named `public` # Here we deploy the folder named `public`
- name: Deploy to neocities - name: Deploy to neocities

View File

@@ -1,9 +0,0 @@
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
background-color: white;
color: black;
font-family: Verdana;
}

View File

@@ -1,81 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Autisticats</title>
<style>
/* Color palette matched to the Autisticats icon */
body {
background-color: #241c39; /* Dark indigo/purple from the icon background */
color: #fdfdfd;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
/* Circular crop and styling for the server icon */
.server-icon {
width: 150px;
height: 150px;
border-radius: 50%; /* This makes it a perfect circle! */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
margin-bottom: 20px;
/* Optional: Add a subtle border matching the moon */
border: 3px solid #aaaaaa;
}
/* Rainbow gradient text matching the infinity mask */
h1 {
font-size: 2.5em;
margin: 0 0 10px 0;
background: linear-gradient(90deg, #df73ff, #8394ff, #62e8bd, #fdfb74, #ffa07a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.1);
}
.status-box {
max-width: 600px;
padding: 20px 40px;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
margin-top: 20px;
}
p {
font-size: 1.1em;
line-height: 1.6;
color: #dcdcdc;
}
.footer {
margin-top: 40px;
font-size: 0.85em;
color: #888888;
}
</style>
</head>
<body>
<img src="/img/autisticats-logo.png" alt="Autisticats Logo" class="server-icon">
<h1>Autisticats</h1>
<div class="status-box">
<p><strong></strong></p>
<p>We are currently building a new space for the community. Please bear with us while we set up the infrastructure and get things organized.</p>
<p>Stay tuned for further updates!</p>
</div>
<div class="footer">
Autisticats Community Hub
</div>
</body>
</html>

55
public/css/style.css Normal file
View File

@@ -0,0 +1,55 @@
/* Color palette matched to the Autisticats icon */
body {
background-color: #241c39; /* Dark indigo/purple from the icon background */
color: #fdfdfd;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
}
/* Circular crop and styling for the server icon */
.server-icon {
width: 150px;
height: 150px;
border-radius: 50%; /* This makes it a perfect circle! */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
margin-bottom: 20px;
/* Optional: Add a subtle border matching the moon */
border: 2px solid #aaaaaa;
}
/* Rainbow gradient text matching the infinity mask */
h1 {
font-size: 2.5em;
margin: 0 0 10px 0;
background: linear-gradient(90deg, #df73ff, #8394ff, #62e8bd, #fdfb74, #ffa07a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.1);
}
.status-box {
max-width: 600px;
padding: 20px 40px;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
margin-top: 20px;
}
p {
font-size: 1.1em;
line-height: 1.6;
color: #dcdcdc;
}
.footer {
margin-top: 40px;
font-size: 0.85em;
color: #888888;
}

View File

Before

Width:  |  Height:  |  Size: 275 KiB

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

26
public/index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Autisticats</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<img src="/img/autisticats-logo.webp" alt="Autisticats Logo" class="server-icon">
<h1>Autisticats</h1>
<div class="status-box">
<p><strong></strong></p>
<p>We are currently building a new space for the community. Please bear with us while we set up the infrastructure and get things organized.</p>
<p>Stay tuned for further updates!</p>
</div>
<div class="footer">
Autisticats Community Hub
</div>
</body>
</html>