init repo
This commit is contained in:
commit
887c3c4b45
|
@ -0,0 +1,8 @@
|
|||
node_modules
|
||||
.DS_Store
|
||||
*.log
|
||||
dist
|
||||
|
||||
# yarn only
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
|
@ -0,0 +1,8 @@
|
|||
# transgirl.cafe
|
||||
homepage for [transgirl.cafe](https://transgirl.cafe)
|
||||
|
||||
# Building
|
||||
`yarn build`
|
||||
|
||||
# Development
|
||||
`yarn dev`
|
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body, html {
|
||||
margin: 0; padding: 0;
|
||||
background: #2a2a2a;
|
||||
color: #f2f2f2;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"name": "transgirl.cafe",
|
||||
"version": "1.0.0",
|
||||
"description": "Homepage for transgirl.cafe",
|
||||
"main": "index.js",
|
||||
"repository": "https://git.blek.codes/blek/transgirl.cafe",
|
||||
"author": "b1ek <me@blek.codes>",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"private": false,
|
||||
"devDependencies": {
|
||||
"@linaria/vite": "^4.5.2",
|
||||
"@sveltejs/vite-plugin-svelte": "^2.4.2",
|
||||
"sass": "^1.64.0",
|
||||
"scss": "^0.2.4",
|
||||
"svelte": "^4.1.0",
|
||||
"vite": "^4.4.4"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@linaria/core": "^4.5.2"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 178 KiB |
Binary file not shown.
After Width: | Height: | Size: 173 KiB |
|
@ -0,0 +1,38 @@
|
|||
.root {
|
||||
|
||||
.intro {
|
||||
text-align: center;
|
||||
margin-top: 100px;
|
||||
}
|
||||
|
||||
.contributors {
|
||||
// background: ;
|
||||
}
|
||||
|
||||
.lgbt {
|
||||
text-align: center;
|
||||
.progress, .trans {
|
||||
width: 300px;
|
||||
height: 150px;
|
||||
display: inline-block;
|
||||
margin-right: 16px;
|
||||
}
|
||||
.progress {
|
||||
background:
|
||||
conic-gradient(at 14% 50%, #0000 221.25deg, white 222deg 318deg, #0000 318.25deg),
|
||||
conic-gradient(at 23% 50%, #0000 221.25deg, #ffa6b9 222deg 318deg, #0000 318.25deg),
|
||||
conic-gradient(at 32% 50%, #0000 221.25deg, #00d2ff 222deg 318deg, #0000 318.25deg),
|
||||
conic-gradient(at 41% 50%, #0000 221.25deg, #753000 222deg 318deg, #0000 318.25deg),
|
||||
conic-gradient(at 50% 50%, #0000 221.25deg, black 222deg 318deg, #0000 318.25deg),
|
||||
linear-gradient(red 0 16.66%, orange 0 33.33%, yellow 0 50%, green 0 66.66%, blue 0 83.33%, indigo 0);
|
||||
}
|
||||
.trans {
|
||||
background: linear-gradient(#00d2ff 20%, #ffa6b9 0 40%, white 0 60%, #ffa6b9 0 80%, #00d2ff 0);
|
||||
}
|
||||
}
|
||||
|
||||
// h1 {
|
||||
// text-align: center;
|
||||
// margin-top: 100px;
|
||||
// }
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
<script>
|
||||
import styles from './app.module.scss';
|
||||
console.log(styles)
|
||||
</script>
|
||||
|
||||
<main class={styles.root}>
|
||||
<div class={styles.intro}>
|
||||
<div class={styles.lgbt}>
|
||||
<div class={styles.progress}></div>
|
||||
<div class={styles.trans}></div>
|
||||
</div>
|
||||
<h1>Welcome to the transgirls cafe ^w^</h1>
|
||||
<p>This is a small community that is maintained in collective efforts of Germany and Russia (nonputin)</p>
|
||||
|
||||
<div class={styles.contributors}>
|
||||
<h1>Contributors</h1>
|
||||
<table align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<img src='/assets/lesbiab.gif' alt='lesbian uwu cat spinning' width='160px'>
|
||||
</td>
|
||||
<td>
|
||||
<img src='/assets/iz.png' alt='izzie :3' width='160px'>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<h4>
|
||||
Alice (uwu)
|
||||
<a href='https://blek.codes'>site</a>
|
||||
</h4>
|
||||
web desing :3
|
||||
</td>
|
||||
<td>
|
||||
<h4>Izzie</h4>
|
||||
host mommy
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
|
@ -0,0 +1,9 @@
|
|||
import App from './app.svelte';
|
||||
|
||||
const el = document.createElement('div');
|
||||
|
||||
const app = new App({
|
||||
target: el
|
||||
})
|
||||
|
||||
document.body.appendChild(el)
|
|
@ -0,0 +1,12 @@
|
|||
import { defineConfig } from 'vite';
|
||||
import { svelte } from '@sveltejs/vite-plugin-svelte';
|
||||
import linaria from '@linaria/vite';
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [svelte()],
|
||||
build: {
|
||||
sourcemap: false,
|
||||
minify: true
|
||||
}
|
||||
})
|
Loading…
Reference in New Issue