commit 38bbe88d33582d68007c2466614277d8814e4e2a Author: Lucas Date: Wed Jun 4 12:48:00 2025 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..461faec --- /dev/null +++ b/Caddyfile @@ -0,0 +1,4 @@ +:80 { + root * /srv + file_server +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..798f9c3 --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +## Site web Caddy avec Docker Compose + +Un site web est un ensemble de pages web accessibles via Internet, généralement regroupées sous un même domaine. Ces pages peuvent contenir des informations sous forme de texte, images, vidéos, ou autres médias. https://caddyserver.com/ + +## Prérequis + +- Git, Docker & Docker Compose installés + +- Cette installation est faite pour fonctionner derrière un reverse-proxy. Exemple ici : https://gitea.lucasroyer.fr/server/reverse-proxy + +## Installation + +1. Clonez ce dépôt : +```bash +git clone https://gitea.lucasroyer.fr/server/gitea.git +cd gitea +``` +2. Modifiez app.env pour ajouter un mot de passe en remplaçant `mypassword` : +```bash +cp app.public.env app.env +nano app.env +``` + +```ini +GITEA__database__DB_TYPE=postgres +GITEA__database__HOST=db:5432 +GITEA__database__NAME=gitea +GITEA__database__USER=gitea +GITEA__database__PASSWD=mypassword #replace +``` +2. Modifiez db.env avec le même mot de passe : +```bash +cp db.public.env db.env +nano db.env +``` +```ini +POSTGRES_USER=gitea +POSTGRES_PASSWORD=mypassword #replace +POSTGRES_DB=gitea +``` +4. Lancez et surveillez les conteneurs : +```bash +sudo docker compose up -d +sudo docker compose logs -f +``` diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..fc805ab --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + web: + image: caddy:latest + container_name: site-veloboomboom + restart: always + volumes: + - /home/lucas/site-veloboomboom/html:/srv # Dossier contenant les fichiers statiques + - /home/lucas/site-veloboomboom/Caddyfile:/etc/caddy/Caddyfile # Fichier de configuration de Caddy + networks: + - reverse-proxy + +networks: + reverse-proxy: + external: true diff --git a/html/assets/favicon/icons/bluesky.png b/html/assets/favicon/icons/bluesky.png new file mode 100644 index 0000000..a5ca7ee Binary files /dev/null and b/html/assets/favicon/icons/bluesky.png differ diff --git a/html/assets/favicon/icons/nosig.png b/html/assets/favicon/icons/nosig.png new file mode 100644 index 0000000..b71a058 Binary files /dev/null and b/html/assets/favicon/icons/nosig.png differ diff --git a/html/assets/favicon/icons/veloboomboom.png b/html/assets/favicon/icons/veloboomboom.png new file mode 100644 index 0000000..f8924a6 Binary files /dev/null and b/html/assets/favicon/icons/veloboomboom.png differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff new file mode 100644 index 0000000..dfbdbc5 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff2 new file mode 100644 index 0000000..f98e5b2 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff new file mode 100644 index 0000000..87685eb Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff2 new file mode 100644 index 0000000..c1c5768 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff new file mode 100644 index 0000000..c66dbc7 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff2 new file mode 100644 index 0000000..d151842 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff new file mode 100644 index 0000000..d14fffe Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff2 new file mode 100644 index 0000000..b0f0af5 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff new file mode 100644 index 0000000..f72a471 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff2 new file mode 100644 index 0000000..22a09b0 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff new file mode 100644 index 0000000..90a6595 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff2 new file mode 100644 index 0000000..294c7ff Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff new file mode 100644 index 0000000..c174886 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff2 new file mode 100644 index 0000000..da834bb Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff new file mode 100644 index 0000000..c1adfed Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff2 new file mode 100644 index 0000000..5a1646b Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff new file mode 100644 index 0000000..fc64f6b Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff2 new file mode 100644 index 0000000..3b4d7f4 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff b/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff new file mode 100644 index 0000000..053dea7 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff2 b/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff2 new file mode 100644 index 0000000..7e52d98 Binary files /dev/null and b/html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-300-normal.woff b/html/assets/fonts/Inter/inter-greek-300-normal.woff new file mode 100644 index 0000000..488fdb4 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-300-normal.woff2 b/html/assets/fonts/Inter/inter-greek-300-normal.woff2 new file mode 100644 index 0000000..e96490f Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-400-normal.woff b/html/assets/fonts/Inter/inter-greek-400-normal.woff new file mode 100644 index 0000000..157de8c Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-400-normal.woff2 b/html/assets/fonts/Inter/inter-greek-400-normal.woff2 new file mode 100644 index 0000000..143a941 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-500-normal.woff b/html/assets/fonts/Inter/inter-greek-500-normal.woff new file mode 100644 index 0000000..6cac572 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-500-normal.woff2 b/html/assets/fonts/Inter/inter-greek-500-normal.woff2 new file mode 100644 index 0000000..5c98638 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-600-normal.woff b/html/assets/fonts/Inter/inter-greek-600-normal.woff new file mode 100644 index 0000000..afd6f6d Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-600-normal.woff2 b/html/assets/fonts/Inter/inter-greek-600-normal.woff2 new file mode 100644 index 0000000..f4f0a5e Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-700-normal.woff b/html/assets/fonts/Inter/inter-greek-700-normal.woff new file mode 100644 index 0000000..09ad426 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-700-normal.woff2 b/html/assets/fonts/Inter/inter-greek-700-normal.woff2 new file mode 100644 index 0000000..140147e Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff b/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff new file mode 100644 index 0000000..b6183a8 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff2 b/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff2 new file mode 100644 index 0000000..97e45aa Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff b/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff new file mode 100644 index 0000000..fd2a178 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff2 b/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff2 new file mode 100644 index 0000000..5f4ae92 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff b/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff new file mode 100644 index 0000000..50c80c2 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff2 b/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff2 new file mode 100644 index 0000000..aec20f6 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff b/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff new file mode 100644 index 0000000..631c642 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff2 b/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff2 new file mode 100644 index 0000000..0fee707 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff b/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff new file mode 100644 index 0000000..9bc667e Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff2 b/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff2 new file mode 100644 index 0000000..3a44ec3 Binary files /dev/null and b/html/assets/fonts/Inter/inter-greek-ext-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-300-normal.woff b/html/assets/fonts/Inter/inter-latin-300-normal.woff new file mode 100644 index 0000000..f3fe81e Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-300-normal.woff2 b/html/assets/fonts/Inter/inter-latin-300-normal.woff2 new file mode 100644 index 0000000..e085aa8 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-400-normal.woff b/html/assets/fonts/Inter/inter-latin-400-normal.woff new file mode 100644 index 0000000..1866261 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-400-normal.woff2 b/html/assets/fonts/Inter/inter-latin-400-normal.woff2 new file mode 100644 index 0000000..c659f5e Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-500-normal.woff b/html/assets/fonts/Inter/inter-latin-500-normal.woff new file mode 100644 index 0000000..19c7bf8 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-500-normal.woff2 b/html/assets/fonts/Inter/inter-latin-500-normal.woff2 new file mode 100644 index 0000000..6fc94ad Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-600-normal.woff b/html/assets/fonts/Inter/inter-latin-600-normal.woff new file mode 100644 index 0000000..b606a87 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-600-normal.woff2 b/html/assets/fonts/Inter/inter-latin-600-normal.woff2 new file mode 100644 index 0000000..bc76d10 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-700-normal.woff b/html/assets/fonts/Inter/inter-latin-700-normal.woff new file mode 100644 index 0000000..097e23e Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-700-normal.woff2 b/html/assets/fonts/Inter/inter-latin-700-normal.woff2 new file mode 100644 index 0000000..8fcc432 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff b/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff new file mode 100644 index 0000000..eb614f6 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff2 b/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff2 new file mode 100644 index 0000000..25be677 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff b/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff new file mode 100644 index 0000000..3ee3fb0 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff2 b/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff2 new file mode 100644 index 0000000..b0d0894 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff b/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff new file mode 100644 index 0000000..30240af Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff2 b/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff2 new file mode 100644 index 0000000..e787291 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff b/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff new file mode 100644 index 0000000..f63fa94 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff2 b/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff2 new file mode 100644 index 0000000..8ff1de2 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff b/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff new file mode 100644 index 0000000..cb95ed7 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff2 b/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff2 new file mode 100644 index 0000000..d8c5665 Binary files /dev/null and b/html/assets/fonts/Inter/inter-latin-ext-700-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff b/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff new file mode 100644 index 0000000..98f2814 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff2 b/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff2 new file mode 100644 index 0000000..c75e79a Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-300-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff b/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff new file mode 100644 index 0000000..095a7a6 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff2 b/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff2 new file mode 100644 index 0000000..b9cb104 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-400-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff b/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff new file mode 100644 index 0000000..900770c Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff2 b/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff2 new file mode 100644 index 0000000..73c7d0f Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-500-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff b/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff new file mode 100644 index 0000000..e16c795 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff2 b/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff2 new file mode 100644 index 0000000..0f59ce6 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-600-normal.woff2 differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff b/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff new file mode 100644 index 0000000..e374be0 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff differ diff --git a/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff2 b/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff2 new file mode 100644 index 0000000..a9a5314 Binary files /dev/null and b/html/assets/fonts/Inter/inter-vietnamese-700-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff new file mode 100644 index 0000000..5b0879a Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff2 new file mode 100644 index 0000000..ff7f269 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff new file mode 100644 index 0000000..9e02c34 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff2 new file mode 100644 index 0000000..a169e93 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff new file mode 100644 index 0000000..896ee76 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff2 new file mode 100644 index 0000000..b02c011 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff new file mode 100644 index 0000000..3c44041 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff2 new file mode 100644 index 0000000..9377c57 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff new file mode 100644 index 0000000..52f8d6c Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff2 new file mode 100644 index 0000000..aff7a42 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff new file mode 100644 index 0000000..547bc65 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff2 new file mode 100644 index 0000000..3e673dd Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-cyrillic-ext-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff new file mode 100644 index 0000000..d15b118 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff2 new file mode 100644 index 0000000..65cc2fd Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff new file mode 100644 index 0000000..82aab03 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff2 new file mode 100644 index 0000000..8df9992 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff new file mode 100644 index 0000000..9da6d23 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff2 new file mode 100644 index 0000000..1b41022 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff new file mode 100644 index 0000000..bfdd122 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff2 new file mode 100644 index 0000000..d7a41bb Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff new file mode 100644 index 0000000..dc70f8f Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff2 new file mode 100644 index 0000000..7bde8ec Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff new file mode 100644 index 0000000..6f7ea9c Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff2 new file mode 100644 index 0000000..6a83750 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff new file mode 100644 index 0000000..8d20a9b Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff2 new file mode 100644 index 0000000..d8db237 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff new file mode 100644 index 0000000..9474d3e Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff2 new file mode 100644 index 0000000..9c771b8 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff new file mode 100644 index 0000000..5756549 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff2 new file mode 100644 index 0000000..4af3a35 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-hebrew-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff new file mode 100644 index 0000000..b9f6e3e Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff2 new file mode 100644 index 0000000..f143cd4 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff new file mode 100644 index 0000000..9150b0c Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff2 new file mode 100644 index 0000000..7015f7d Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff new file mode 100644 index 0000000..a27ea13 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff2 new file mode 100644 index 0000000..7fc8d86 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff new file mode 100644 index 0000000..15e4627 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff2 new file mode 100644 index 0000000..111c66d Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff new file mode 100644 index 0000000..8cfc705 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff2 new file mode 100644 index 0000000..c937470 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff new file mode 100644 index 0000000..549982f Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff2 new file mode 100644 index 0000000..8a086a0 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-latin-ext-800-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff b/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff new file mode 100644 index 0000000..7478fe0 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff2 new file mode 100644 index 0000000..68a8c7a Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-400-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff b/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff new file mode 100644 index 0000000..6ed768c Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff2 new file mode 100644 index 0000000..9282a98 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-600-normal.woff2 differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff b/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff new file mode 100644 index 0000000..e4e2e08 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff differ diff --git a/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff2 b/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff2 new file mode 100644 index 0000000..328b089 Binary files /dev/null and b/html/assets/fonts/OpenSans/open-sans-vietnamese-800-normal.woff2 differ diff --git a/html/assets/fonts/horizon.otf b/html/assets/fonts/horizon.otf new file mode 100644 index 0000000..f25fa32 Binary files /dev/null and b/html/assets/fonts/horizon.otf differ diff --git a/html/assets/img/Carré11.png b/html/assets/img/Carré11.png new file mode 100644 index 0000000..bd8d492 Binary files /dev/null and b/html/assets/img/Carré11.png differ diff --git a/html/assets/img/Carré12.png b/html/assets/img/Carré12.png new file mode 100644 index 0000000..c87ab80 Binary files /dev/null and b/html/assets/img/Carré12.png differ diff --git a/html/assets/img/Carré13.png b/html/assets/img/Carré13.png new file mode 100644 index 0000000..7e269cb Binary files /dev/null and b/html/assets/img/Carré13.png differ diff --git a/html/assets/img/Carré21.png b/html/assets/img/Carré21.png new file mode 100644 index 0000000..0086bef Binary files /dev/null and b/html/assets/img/Carré21.png differ diff --git a/html/assets/img/Carré22.png b/html/assets/img/Carré22.png new file mode 100644 index 0000000..af047ca Binary files /dev/null and b/html/assets/img/Carré22.png differ diff --git a/html/assets/img/Carré23.png b/html/assets/img/Carré23.png new file mode 100644 index 0000000..41f66b0 Binary files /dev/null and b/html/assets/img/Carré23.png differ diff --git a/html/assets/img/Carré31.png b/html/assets/img/Carré31.png new file mode 100644 index 0000000..0a37ca0 Binary files /dev/null and b/html/assets/img/Carré31.png differ diff --git a/html/assets/img/Carré32.png b/html/assets/img/Carré32.png new file mode 100644 index 0000000..bbaa925 Binary files /dev/null and b/html/assets/img/Carré32.png differ diff --git a/html/assets/img/Carré33.png b/html/assets/img/Carré33.png new file mode 100644 index 0000000..4d054eb Binary files /dev/null and b/html/assets/img/Carré33.png differ diff --git a/html/assets/img/Carré41.png b/html/assets/img/Carré41.png new file mode 100644 index 0000000..f25c968 Binary files /dev/null and b/html/assets/img/Carré41.png differ diff --git a/html/assets/img/Carré42.png b/html/assets/img/Carré42.png new file mode 100644 index 0000000..7469cd9 Binary files /dev/null and b/html/assets/img/Carré42.png differ diff --git a/html/assets/img/Carré43.png b/html/assets/img/Carré43.png new file mode 100644 index 0000000..501d7de Binary files /dev/null and b/html/assets/img/Carré43.png differ diff --git a/html/assets/img/Carré51.png b/html/assets/img/Carré51.png new file mode 100644 index 0000000..f4d001d Binary files /dev/null and b/html/assets/img/Carré51.png differ diff --git a/html/assets/img/Carré52.png b/html/assets/img/Carré52.png new file mode 100644 index 0000000..721aad4 Binary files /dev/null and b/html/assets/img/Carré52.png differ diff --git a/html/assets/img/Carré53.png b/html/assets/img/Carré53.png new file mode 100644 index 0000000..33a5e9a Binary files /dev/null and b/html/assets/img/Carré53.png differ diff --git a/html/assets/img/Carré61.png b/html/assets/img/Carré61.png new file mode 100644 index 0000000..492bf2f Binary files /dev/null and b/html/assets/img/Carré61.png differ diff --git a/html/assets/img/Carré62.png b/html/assets/img/Carré62.png new file mode 100644 index 0000000..1d9ee0f Binary files /dev/null and b/html/assets/img/Carré62.png differ diff --git a/html/assets/img/Carré63.png b/html/assets/img/Carré63.png new file mode 100644 index 0000000..a21bf64 Binary files /dev/null and b/html/assets/img/Carré63.png differ diff --git a/html/assets/img/Carré71.png b/html/assets/img/Carré71.png new file mode 100644 index 0000000..d4b86fc Binary files /dev/null and b/html/assets/img/Carré71.png differ diff --git a/html/assets/img/Carré72.png b/html/assets/img/Carré72.png new file mode 100644 index 0000000..686dec9 Binary files /dev/null and b/html/assets/img/Carré72.png differ diff --git a/html/assets/img/Carré73.png b/html/assets/img/Carré73.png new file mode 100644 index 0000000..6e95d3b Binary files /dev/null and b/html/assets/img/Carré73.png differ diff --git a/html/assets/img/logo.png b/html/assets/img/logo.png new file mode 100644 index 0000000..f8924a6 Binary files /dev/null and b/html/assets/img/logo.png differ diff --git a/html/assets/linkstack/icons/facebook.svg b/html/assets/linkstack/icons/facebook.svg new file mode 100644 index 0000000..58e7f54 --- /dev/null +++ b/html/assets/linkstack/icons/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/html/assets/linkstack/icons/instagram.svg b/html/assets/linkstack/icons/instagram.svg new file mode 100644 index 0000000..b24f6a0 --- /dev/null +++ b/html/assets/linkstack/icons/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/html/assets/linkstack/icons/logo.svg b/html/assets/linkstack/icons/logo.svg new file mode 100644 index 0000000..36d9b32 --- /dev/null +++ b/html/assets/linkstack/icons/logo.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/assets/linkstack/icons/mastodon.svg b/html/assets/linkstack/icons/mastodon.svg new file mode 100644 index 0000000..6f949f3 --- /dev/null +++ b/html/assets/linkstack/icons/mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/html/assets/linkstack/icons/pixelfed.svg b/html/assets/linkstack/icons/pixelfed.svg new file mode 100644 index 0000000..77eada6 --- /dev/null +++ b/html/assets/linkstack/icons/pixelfed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/html/assets/linkstack/images/favicon_1741949598.png b/html/assets/linkstack/images/favicon_1741949598.png new file mode 100644 index 0000000..f8924a6 Binary files /dev/null and b/html/assets/linkstack/images/favicon_1741949598.png differ diff --git a/html/assets/linkstack/images/logo.svg b/html/assets/linkstack/images/logo.svg new file mode 100644 index 0000000..36d9b32 --- /dev/null +++ b/html/assets/linkstack/images/logo.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/assets/webfonts/fa-brands-400.ttf b/html/assets/webfonts/fa-brands-400.ttf new file mode 100644 index 0000000..cf6a98f Binary files /dev/null and b/html/assets/webfonts/fa-brands-400.ttf differ diff --git a/html/assets/webfonts/fa-brands-400.woff2 b/html/assets/webfonts/fa-brands-400.woff2 new file mode 100644 index 0000000..c740267 Binary files /dev/null and b/html/assets/webfonts/fa-brands-400.woff2 differ diff --git a/html/assets/webfonts/fa-regular-400.ttf b/html/assets/webfonts/fa-regular-400.ttf new file mode 100644 index 0000000..9ef8a37 Binary files /dev/null and b/html/assets/webfonts/fa-regular-400.ttf differ diff --git a/html/assets/webfonts/fa-regular-400.woff2 b/html/assets/webfonts/fa-regular-400.woff2 new file mode 100644 index 0000000..a865b2f Binary files /dev/null and b/html/assets/webfonts/fa-regular-400.woff2 differ diff --git a/html/assets/webfonts/fa-solid-900.ttf b/html/assets/webfonts/fa-solid-900.ttf new file mode 100644 index 0000000..2b96436 Binary files /dev/null and b/html/assets/webfonts/fa-solid-900.ttf differ diff --git a/html/assets/webfonts/fa-solid-900.woff2 b/html/assets/webfonts/fa-solid-900.woff2 new file mode 100644 index 0000000..021d33f Binary files /dev/null and b/html/assets/webfonts/fa-solid-900.woff2 differ diff --git a/html/assets/webfonts/fa-v4compatibility.ttf b/html/assets/webfonts/fa-v4compatibility.ttf new file mode 100644 index 0000000..f07e670 Binary files /dev/null and b/html/assets/webfonts/fa-v4compatibility.ttf differ diff --git a/html/assets/webfonts/fa-v4compatibility.woff2 b/html/assets/webfonts/fa-v4compatibility.woff2 new file mode 100644 index 0000000..6f96a11 Binary files /dev/null and b/html/assets/webfonts/fa-v4compatibility.woff2 differ diff --git a/html/going/10?https:%2F%2Ffb.me%2Fe%2F2ZWjgyGe1.html b/html/going/10?https:%2F%2Ffb.me%2Fe%2F2ZWjgyGe1.html new file mode 100644 index 0000000..642b8c5 --- /dev/null +++ b/html/going/10?https:%2F%2Ffb.me%2Fe%2F2ZWjgyGe1.html @@ -0,0 +1,26 @@ + + +Обновите свой браузер + + + +

Обновите свой браузер

Вы используйте браузер, который не поддерживается Facebook.
Для более удобного использования, посетите один из этих сайтов и установите последнюю версию предпочитаемого вами браузера:
Google Chrome
Mozilla Firefox
Установите Facebook на ваш телефон
Оставайтесь на связи всегда и везде.
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/going/11?https:%2F%2Fdon.planning-familial.org%2Floireatlantique-1.html b/html/going/11?https:%2F%2Fdon.planning-familial.org%2Floireatlantique-1.html new file mode 100644 index 0000000..f2226a7 --- /dev/null +++ b/html/going/11?https:%2F%2Fdon.planning-familial.org%2Floireatlantique-1.html @@ -0,0 +1,1683 @@ + + + + + + + + + + Faire un don au Planning Familial Planning Familial 44 (copie) (copie) (copie) (copie) (copie) (copie) (copie) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
+
+ + + +
+
+ + + + + + + + + +
+
+
+ +
+ +

+ Mon don +

+
+ +
+ + +
+
+
+
+ +

Je fais un don ponctuel

+ + + +
+
+
+
20 €
+
+
+ + + + +
+
+
50 €
+
+
+ + + + +
+
+
100 €
+
+
+ + + + + + + + +
+
+ + +
+
+ + + +
+ + + + +
+
+
+
+ +
+
+ +
+
+ + + +

Mes coordonnées

+
+ +
+ + +
+ Tous les champs sont obligatoires +
+
+
+
+ +
+
+
+
+
+
+
Raison sociale de l'organisation
+
+ +
+
+
+
+ +
+
+
+
+
Prénom
+
+ +
+
+
+
+
+
+
Nom
+
+ +
+
+
+ +
+
+
+
E-mail
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
Adresse
+
+ +
+
+
+ +
+
+
+
Complément d'adresse
+
+ +
+
+
+ +
+ +
+
+
+
+
Code postal
+
+ +
+
+
+
+
+
+
Ville
+
+ +
+
+
+
+ +
+
+
+
+
Pays
+
+ +
+
+
+
+
+
+
Téléphone
+
+ +
+
+
+
+ +
+ +
+ + +
+
+ +
+ +

Mon règlement

+
+
+
+ + +
+
+
+
+ + + +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/html/going/2?https:%2F%2Fwww.instagram.com%2Fveloboomboom%2F.html b/html/going/2?https:%2F%2Fwww.instagram.com%2Fveloboomboom%2F.html new file mode 100644 index 0000000..3489882 --- /dev/null +++ b/html/going/2?https:%2F%2Fwww.instagram.com%2Fveloboomboom%2F.html @@ -0,0 +1,26 @@ + + +Обновите свой браузер + + + +

Обновите свой браузер

Вы используйте браузер, который не поддерживается Facebook.
Для более удобного использования, посетите один из этих сайтов и установите последнюю версию предпочитаемого вами браузера:
Google Chrome
Mozilla Firefox
Установите Facebook на ваш телефон
Оставайтесь на связи всегда и везде.
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/going/3?https:%2F%2Fpixelfed.social%2Fi%2Fweb%2Fprofile%2F805027756453858555.html b/html/going/3?https:%2F%2Fpixelfed.social%2Fi%2Fweb%2Fprofile%2F805027756453858555.html new file mode 100644 index 0000000..8e0291e --- /dev/null +++ b/html/going/3?https:%2F%2Fpixelfed.social%2Fi%2Fweb%2Fprofile%2F805027756453858555.html @@ -0,0 +1,97 @@ + + + + + + + + + + Vélo Boom Boom (@veloboomboom@pixelfed.social) - Pixelfed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + + + + + + + diff --git a/html/going/4?https:%2F%2Fmasto.bike%2F@veloboomboom.html b/html/going/4?https:%2F%2Fmasto.bike%2F@veloboomboom.html new file mode 100644 index 0000000..925d369 --- /dev/null +++ b/html/going/4?https:%2F%2Fmasto.bike%2F@veloboomboom.html @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + +Vélo Boom Boom (@veloboomboom@masto.bike) - masto.bike + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + diff --git a/html/going/5?https:%2F%2Fbsky.app%2Fprofile%2Fveloboomboom.bsky.social.html b/html/going/5?https:%2F%2Fbsky.app%2Fprofile%2Fveloboomboom.bsky.social.html new file mode 100644 index 0000000..8c70889 --- /dev/null +++ b/html/going/5?https:%2F%2Fbsky.app%2Fprofile%2Fveloboomboom.bsky.social.html @@ -0,0 +1,142 @@ + + + + + + + + + @veloboomboom.bsky.social on Bluesky + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
+
+ + + + diff --git a/html/going/7?https:%2F%2Fwww.threads.net%2F@veloboomboom.html b/html/going/7?https:%2F%2Fwww.threads.net%2F@veloboomboom.html new file mode 100644 index 0000000..f525298 --- /dev/null +++ b/html/going/7?https:%2F%2Fwww.threads.net%2F@veloboomboom.html @@ -0,0 +1,26 @@ + + +Обновите свой браузер + + + +

Обновите свой браузер

Вы используйте браузер, который не поддерживается Facebook.
Для более удобного использования, посетите один из этих сайтов и установите последнюю версию предпочитаемого вами браузера:
Google Chrome
Mozilla Firefox
Установите Facebook на ваш телефон
Оставайтесь на связи всегда и везде.
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/going/8?https:%2F%2Fmobilizon.fr%2Fevents%2F4f47b854-03f8-44e4-ae6d-e94322175137.html b/html/going/8?https:%2F%2Fmobilizon.fr%2Fevents%2F4f47b854-03f8-44e4-ae6d-e94322175137.html new file mode 100644 index 0000000..708f103 --- /dev/null +++ b/html/going/8?https:%2F%2Fmobilizon.fr%2Fevents%2F4f47b854-03f8-44e4-ae6d-e94322175137.html @@ -0,0 +1,36 @@ + + + + + + + + + + + + + +Vélo Boom Boom #1 - Mobilizon + + + + + + + + +
+ + + \ No newline at end of file diff --git a/html/going/9?https:%2F%2Fwww.facebook.com%2Fprofile.php?id=61573893787431.html b/html/going/9?https:%2F%2Fwww.facebook.com%2Fprofile.php?id=61573893787431.html new file mode 100644 index 0000000..ebcc9f8 --- /dev/null +++ b/html/going/9?https:%2F%2Fwww.facebook.com%2Fprofile.php?id=61573893787431.html @@ -0,0 +1,26 @@ + + +Обновите свой браузер + + + +

Обновите свой браузер

Вы используйте браузер, который не поддерживается Facebook.
Для более удобного использования, посетите один из этих сайтов и установите последнюю версию предпочитаемого вами браузера:
Google Chrome
Mozilla Firefox
Установите Facebook на ваш телефон
Оставайтесь на связи всегда и везде.
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..6054552 --- /dev/null +++ b/html/index.html @@ -0,0 +1,12199 @@ + + + + + + + + + + + + + + + Vélo Boom Boom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + +
+
+ +
+
+ + + + + + + +
+
+
+ + avatar + + +

Vélo Boom Boom

+ + + + +
+
+

+

Vélo techno pour tous·tes - Festif mais pas naïf - Nantes

+

RDV le 13 juin 20h au Miroir d'eau ​🔥

+

Avec NOSIG, le centre LGBTQIA+ de Nantes

+ +

+
+
+ + + + + + + + + + + + + + + + +
+
+ Vendredi 13 juin 20h00 au miroir d'eau à Nantes. Technoride inclusive 2ème édition. Vélo boom boom, before marche des fiertés. + Roulons ensemble pour NOSIG, le centre LBGTQIA+ de Nantes. Association Véloboomboom et NOSIG. NOSIG, c'est de l'accueil, de l'information et de l'orientation des personnes LGBTQIA+ et leur entourage. Sensibilisations contre les discriminations face au risque dépressif et suicidaire. Éducation à la vie sexuelle et affective. Prévention contre le VIH et les ISTs. Préservation de la mémoire LGBTQIA+. Animation de moments de convivialité pour l'épanouissement des LGBTQIA+. Organisation de la marche des fiertés. Lien cagnotte en bio, boîte et TPE sur place. + Tu aimes le son ? Nous aussi ! Ramène tes enceintes, même petites ! Tu as du gros son mais pas de quoi le déplacer ? Contacte-nous ! + L'art du blocage en autogestion : tu souhaites aider la prochaine Vélo Boom Boom ? Découvre comment sécuriser proprement le cortège. + Sécu boom boom : où, quand, comment, que dire, que faire ? Remplis le formulaire en bio ou envoie nous un message. Rejoins-nous ! + Petits rappels de sécurité ! Calme, respect, bienveillance en tout circonstance. Trottoirs strictement interdits, voie opposée réservée aux bloqueurs. Priorité piétons, trams, ambulances, pompiers, je préviens les personnes derrière moi. + Le 4 avril, c'était 800 participant·es, 1407€ pour le Planning familial de Loire-Atlantique. Merci pour elleux ! + 11,7 kilomètres de fun, merci à vous ! Carte de Nantes avec le parcours de la Véloboomboom édition 1. + La suite en juin. Un comportement ou une remarque inaproprié·e ? Quelque chose s'est mal passé le 4 avril ? Tu aurais préféré que ... Une envie, une remarque, une suggestion ? Prends ta plus belle plume et dépose-nous un petit message en privé. Bisous. + Foire aux questions et petits conseils : j'ai pas de vélo, je fais comment ? Prends un bicloo, des patins ou un skate ! + Foire aux questions et petits conseils : J'emmène quoi ? Des lumières pour être visible de nuit, un casque et des bouchons si besoin, des sous pour le planning familial ! La vélo boom boom, c'est demain. + Foire aux questions et petits conseils : je suis en retard, je suis perdu ? Télécharge l'application Critical Maps pour localiser le cortège. Rappel, événement autogéré : tu participes à la sécurité ! + Vélo Boom Boom en toute sécurité. Si des véhicules prioritaires arrivent, je m'écarte rapidement. Je prends la place des voitures sur la route, pas des piétons sur les trottoirs. + Fête autogérée. Je bloque, je participle, j'anticipe, j'explique. Je reste calme, je ne provoque pas, je ne mets pas en danger le groupe à cause de mon égo. Si je craque, je passe la main. + Je dépasse avec prudence, je m'arrête en me signalant, je ne roule pas sur la voie opposée. Je maîtrise mes consommations pour rester lucide et bienveillant. + Une fête militante. La Vélo Boom Boom, c'est l'occasion de réunir le vélo, la fête, la techno, la nuit. C'est aussi celle de soutenir une société plus juste, plus égalitaire et plus inclusive. Nous appelons aux dons pour le Planning Familial 44 ! + Ton corps, ton choix. Le planning familial, c'est 60 ans de lutte pour une éducation affective et sexuelle, pour une maternité choisie, contre les violences sexistes et sexuelles, pour prévenir le sida et les infections sexuellement transmissibles. Après 1000€ supprimés par la région, défendons ensemble ces droits fondamentaux. + Je donne comment ? En ligne jusqu'au 4 avril via le lien https://don.planning-familial.org/loireatlantique-1. Si tu payes des impôts, fais un joli don au planning, qui t'enverra un reçu, que tu peux transmettre aux impôts en 2026 pour recevoir un remboursement des deux tiers de l'état. Sinon, c'est possible en cash le jour J. Des petites cagnottes roulantes seront à ta disposition ! Merci pour elleux ! J-15 + Annonce de l'évènement Vélo Boom Boom : le 4 avril à 20h au Miroir d'eau à Nantes, une technoride inclusive première édition. + Visuel précisant qu'est ce que la Vélo Boom Boom : une balade à vélo en ville, une fête roulante en autogestion, de la techno et des sonos mobiles, une ride festive mais pas naïve, un évènement vélorutionnaire, un soutien aux luttes intersectionnelles. + Visuel précisant pour qui est la Vélo Boom Boom : c'est ok pour M.I.N.T. qui est Meuf, Intersexes, Non Binaires, Trans, LGBTQIA+ qui est Lesbiennes, Gays, Bisexuel·les, Trans, Queer, Intersexes, Asexuel·les & Aromantiques, Racisé·es, Handi·es, Allié·es, pour tout âge, toute nationalité et toute confession. Ça n'est pas ok pour les sexistes, fascistes, racistes, homophobes, transphobes, classistes, validistes et Christelle Morançais. +
+
+ + + + + + +
+
+
+ + + + + \ No newline at end of file diff --git a/html/themes/galaxy/animations.css b/html/themes/galaxy/animations.css new file mode 100644 index 0000000..d80583f --- /dev/null +++ b/html/themes/galaxy/animations.css @@ -0,0 +1,101 @@ +/* ************************************************************* */ +/* +/* Use this file to add custom CSS animations. +/* Delete this file if you wish to use the default animations. +/* If you do not want to have animations in your theme, +/* remove or comment them and include this file in your theme. +/* +/* ************************************************************* */ + + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– +- Entrance animations +- Button hover animations +- Icon hover animations +- Footer hover animations + +*/ + + + +/* Entrance animations +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +.button-entrance { + animation-name: popUp; + animation-duration: 1s; + animation-fill-mode: both; + /* Used to start button entrance animation one after another */ + animation-delay: calc(var(--delay)/10); + } + +@keyframes popUp { + from { + opacity: 0; + transform: scale3d(0.3, 0.3, 0.3); + } + + 50% { + opacity: 1; + } +} + +.fadein { + animation-name: fadein; + animation-duration: 3s; + animation-fill-mode: both; + } + +@keyframes fadein { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + + +/* Button hover animations +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* (Also apply to icon) */ + +.button-hover, .credit-hover{ + display:inline-block; + -webkit-transform:perspective(1px) translateZ(0); + transform:perspective(1px) translateZ(0); + box-shadow:0 0 1px rgba(0,0,0,0); + -webkit-transition-duration:.1s; + transition-duration:.1s; + -webkit-transition-property:transform; + transition-property:transform +} +.button-hover:active,.credit-hover:active, +.button-hover:focus,.credit-hover:focus, +.button-hover:hover,.credit-hover:hover{ + -webkit-transform:scale(1.02); + transform:scale(1.02) +} + + +/* Footer hover animations +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +.footer-hover{ + display:inline-block; + -webkit-transform:perspective(1px) translateZ(0); + transform:perspective(1px) translateZ(0); + box-shadow:0 0 1px rgba(0,0,0,0); + -webkit-transition-duration:.3s; + transition-duration:.3s; + -webkit-transition-property:transform; + transition-property:transform; + -webkit-transition-timing-function:ease-out; + transition-timing-function:ease-out +} +.footer-hover:active,.footer-hover:focus,.footer-hover:hover{ + -webkit-transform:translateY(-8px); + transform:translateY(-8px) +} diff --git a/html/themes/galaxy/brands.css b/html/themes/galaxy/brands.css new file mode 100644 index 0000000..8b36658 --- /dev/null +++ b/html/themes/galaxy/brands.css @@ -0,0 +1,87 @@ + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– + +- Rounded user avatars +- Buttons +- Brand Styles + +*/ + + +/* Rounded avatars +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Disable this if you don't want rounded avatars for users */ +.rounded-avatar { + border-radius: 50%; +} + +.social-icon { + font-size: 32px; + padding: 10px; +} +.social-icon-div { + padding-bottom: 30px; +} +.social-icon{color:#fff;} + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +:root { + --bgColor: #223344; + --bgColor2: #090a0f; + --accentColor: #FFF; + --font: 'Karla', sans-serif; + --delay: .3s; } + +.button { + position: relative; + background-color: transparent; + color: var(--accentColor); + border: solid var(--accentColor) 2px; + border-radius: 10px; + font-size: 1rem; + text-align: center; + display: block; + margin-left: 10px; + margin-right: 10px; + margin-bottom: 10px; + padding: 10px; /* 17px */ + text-decoration: none; + /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */ + -webkit-tap-highlight-color: transparent; +} + +@media (hover: hover) { + .button:hover { + background-color: var(--accentColor); + color: var(--bgColor); + } +} + +.button:active { + background-color: var(--accentColor); + color: var(--bgColor); +} + + +/* Brand Icons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +.icon { + padding: 0px 8px 3.5px 0px; + vertical-align: middle; + width: 20px; + height: 20px; + -webkit-filter: grayscale(100%); + -moz-filter: grayscale(100%); + filter: grayscale(100%); +} + +.button:hover .icon { + -webkit-filter: invert(100%) grayscale(100%); + -moz-filter: invert(100%) grayscale(100%); + filter: invert(100%) grayscale(100%); +} \ No newline at end of file diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff b/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff new file mode 100644 index 0000000..662bd26 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff differ diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff2 b/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff2 new file mode 100644 index 0000000..3c38a31 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-400-normal.woff2 differ diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff b/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff new file mode 100644 index 0000000..978ff39 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff differ diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff2 b/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff2 new file mode 100644 index 0000000..23c67b7 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-700-normal.woff2 differ diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff b/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff new file mode 100644 index 0000000..6c1a429 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff differ diff --git a/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff2 b/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff2 new file mode 100644 index 0000000..23aee26 Binary files /dev/null and b/html/themes/galaxy/extra/custom-assets/karla-latin-ext-400-normal.woff2 differ diff --git a/html/themes/galaxy/share.button.css b/html/themes/galaxy/share.button.css new file mode 100644 index 0000000..1fe5841 --- /dev/null +++ b/html/themes/galaxy/share.button.css @@ -0,0 +1,111 @@ +.share-icon { + padding: 0px 8px 3.5px 0px; + vertical-align: middle; + width: 20px; + height: 20px; + -webkit-filter: invert(100%); + -moz-filter: invert(100%); + filter: invert(100%); +} + +.sharediv { + position:relative; + top: 30px; + right: 30px; + padding-bottom: 40px; +} + +.toastdiv { + display: -webkit-flex; + display: flex; + -webkit-align-items: center; + align-items: center; + -webkit-justify-content: center; + justify-content: center; +} + +.toastbox { + width: 280px; + padding: 10px; + background-color: rgba(0, 0, 0, 0.7); + color: white; + border-radius: 4px; + position: fixed; + top: 105%; + -webkit-transition: transform 0.3s linear; + transition: transform 0.3s linear; + z-index: 2; + text-align: center; +} +.toastbox.toast-tox--active { + -webkit-transform: translateY(-150px); + transform: translateY(-150px); +} + + .sharebutton, + sharebutton { + display: inline-block; + text-decoration: none; + height: 48px; + text-align: center; + vertical-align: middle; + font-size: 18px; + width: 48px; + font-weight: 700; + line-height: 48px; + letter-spacing: 0.1px; + white-space: wrap; + border: solid var(--accentColor) 2px; + border-radius: 10px; + cursor: pointer; + color: #ffffff; + background-color: transparent; + } + +@media screen and (min-width: 600px) { + .sharebutton, + sharebutton { + display: inline-block; + text-decoration: none; + height: 48px; + text-align: center; + vertical-align: middle; + font-size: 18px; + width: 150px; + font-weight: 700; + line-height: 48px; + letter-spacing: 0.1px; + white-space: wrap; + border: solid var(--accentColor) 2px; + border-radius: 10px; + cursor: pointer; + color: #ffffff; + background-color: transparent; + } + .sharebutton-img { + position: relative; + left: 3px; + margin-left: auto; + margin-right: auto; + } +} +sharebutton:hover, +.sharebutton:hover { + color: #000000; + background-color: #FFF; +} +.sharebutton:hover .share-icon { + filter: none !important; +} + + @media screen and (max-width: 600px) { + .sharebutton-mb { + display: none; + } + .sharebutton-img { + position: relative; + left: 3px; + margin-left: auto; + margin-right: auto; + } + } \ No newline at end of file diff --git a/html/themes/galaxy/skeleton-auto.css b/html/themes/galaxy/skeleton-auto.css new file mode 100644 index 0000000..587a0a1 --- /dev/null +++ b/html/themes/galaxy/skeleton-auto.css @@ -0,0 +1,820 @@ + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– + +- Grid +- Base Styles +- Background +- Typography +- Links +- Code +- Spacing +- Utilities +- Misc +- Credit footer + +*/ + + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + max-width: 600px; + text-align: center; + margin: 0 auto; + box-sizing: border-box; } + .column { + position: center; + width: 100%; + float: center; + box-sizing: border-box; } + + /* For devices larger than 400px */ + @media (min-width: 400px) { + .container { + width: 85%; + padding: 0; } + } + + /* For devices larger than 550px */ + @media (min-width: 550px) { + .container { + width: 80%; } + .column, + .columns { + margin-left: 0; } + .column:first-child, + .columns:first-child { + margin-left: 0; } + + } + + + /* Base Styles + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + /* NOTE + html is set to 62.5% so that all the REM measurements throughout Skeleton + are based on 10px sizing. So basically 1.5rem = 15px :) */ + + html { + font-size: 100%; } + + :root { + --bgColor: #223344; + --bgColor2: #090a0f; + --accentColor: #FFF; + --font: 'Karla', sans-serif; + --delay: .3s; } + + /* Background + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + + body { + margin: 0; + padding: 0; + min-height: 100vh; + font-family: var(--font); + background: radial-gradient(ellipse at bottom, var(--bgColor) 0%, var(--bgColor2) 100%); + opacity: 0; + animation: 1s ease-out var(--delay) 1 transitionAnimation; /* duration/timing-function/delay/iterations/name */ + animation-fill-mode: forwards; + background-repeat: no-repeat; + background-size: cover; + position: relative; + color: #FFFFFF; + } + + + /* Animation */ + @keyframes transitionAnimation { + 0% { + opacity: 0; + transform: translateY(-10px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +@keyframes animate { + 0% { + background-position: -500%; + } + 100% { + background-position: 500%; + } +} + +@keyframes animStar { + from { + transform: translateY(0px); + } + to { + transform: translateY(-2000px); + } +} + + /* Typography + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + h1 { + margin-top: 0; + margin-bottom: 16px; + font-weight: 400; } + h1 { font-size:24px; line-height: 64px; letter-spacing: 0;} + + + /* Larger than phablet */ + @media (min-width: 350px) { + h1 { font-size: 48px; line-height: 96px;} + } + + p { + margin-top: 0; } + + + /* Links + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + a { + color: #0085FF; + text-decoration: none; + } + a:hover { + color: #0085FF; } + + .spacing { + padding: 0 10px; + padding-top: 50px; + } + + /* Code + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + code { + padding: .2rem .5rem; + margin: 0 .2rem; + font-size: 90%; + white-space: nowrap; + background: #F1F1F1; + border: 1px solid #E1E1E1; + border-radius: 4px; } + pre > code { + display: block; + padding: 1rem 1.5rem; + white-space: pre; } + + /* Spacing + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + button, + .button { + margin-bottom: 1rem; + display: block !important; } + input, + textarea, + select, + fieldset { + margin-bottom: 1.5rem; } + pre, + blockquote, + dl, + figure, + p, + ol { + margin-bottom: 2.5rem; } + + + /* Utilities + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + .u-full-width { + width: 100%; + box-sizing: border-box; } + .u-max-full-width { + max-width: 100%; + box-sizing: border-box; } + .u-pull-right { + float: right; } + .u-pull-left { + float: left; } + + + /* Misc + –––––––––––––––––––––––––––––––––––––––––––––––––– */ + hr { + margin-top: 3rem; + margin-bottom: 3.5rem; + border-width: 0; + border-top: 1px solid #E1E1E1; } + + + /* ===== Scrollbar CSS ===== */ + /* Firefox */ + * { + scrollbar-width: thin; + scrollbar-color: #171a1d #31363b; + } + + /* Chrome, Edge, and Safari */ + *::-webkit-scrollbar { + width: 8px; + } + + *::-webkit-scrollbar-track { + background: #31363b; + } + + *::-webkit-scrollbar-thumb { + background-color: #171a1d; + border-radius: 30px; + border: 3px none #ffffff; + } + + +/* Credit footer +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* Styling for credit footer text */ +.credit-txt { + font-weight: 700; + font-size: 15px; + text-decoration: none; +} + +.credit-icon { + display: none; + right: 5px; +} +.credit-footer { + position: relative; + right: 15px; +} + +/* Switches text color for credit footer for dark/light mode */ + + .credit-txt-clr{ + color: #FFF !important; +} + + + +/*-----------------------parallax-----------------------*/ +#object1 { + width: 1px; + height: 1px; + background: transparent; + animation: animStar 120s linear infinite; + + box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff, + 1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff, + 36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff, + 1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff, + 1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff, + 164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff, + 1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff, + 1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff, + 1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff, + 614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff, + 1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff, + 1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff, + 1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff, + 214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff, + 1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff, + 903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff, + 1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff, + 757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff, + 576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff, + 297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff, + 82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff, + 779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff, + 1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff, + 1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff, + 1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff, + 142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff, + 1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff, + 1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff, + 707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff, + 1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff, + 1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff, + 678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff, + 51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff, + 416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff, + 218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff, + 1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff, + 236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff, + 671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff, + 785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff, + 687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff, + 1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff, + 1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff, + 1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff, + 545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff, + 9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff, + 958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff, + 1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff, + 295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff, + 1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff, + 766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff, + 682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff, + 673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff, + 1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff, + 1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff, + 1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff, + 1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff, + 382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff, + 161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff, + 179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff, + 858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff, + 1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff, + 343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff, + 1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff, + 1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff, + 1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff, + 121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff, + 1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff, + 1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff, + 1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff, + 1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff, + 119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff, + 407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff, + 1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff, + 1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff, + 374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff, + 1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff, + 727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff, + 1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff, + 978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff, + 284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff, + 1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff, + 1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff, + 1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff, + 529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff, + 270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff, + 1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff, + 955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff, + 226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff, + 839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff, + 1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff, + 467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff, + 483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff, + 1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff, + 166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff, + 827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff, + 1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff, + 1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff, + 899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff, + 1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff, + 1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff, + 1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff, + 384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff, + 1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff, + 928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff, + 1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff, + 512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff, + 1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff, + 411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff, + 769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff, + 1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff, + 1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff, + 1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff, + 1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff, + 1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff, + 1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff, + 1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff, + 751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff, + 1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff, + 1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff, + 1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff, + 206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff, + 519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff, + 172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff, + 1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff, + 772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff, + 1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff, + 1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff, + 1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff, + 665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff, + 764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff, + 913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff, + 1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff, + 242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff, + 752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff, + 21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff, + 158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff, + 734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff, + 1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff, + 1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff, + 95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff, + 955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff, + 1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff, + 1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff, + 1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff, + 455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff, + 236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff, + 1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff, + 1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff, + 700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff, + 1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff, + 1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff, + 985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff, + 914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff, + 257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff, + 1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff, + 1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff, + 1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff, + 1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff, + 1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff, + 41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff, + 1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff, + 1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff, + 1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff, + 918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff, + 605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff, + 1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff, + 768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff, + 380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff, + 1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff, + 1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff, + 1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff, + 1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff, + 1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff, + 100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff, + 1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff, + 659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff, + 696px 1654px #fff, 1144px 60px #fff; +} + +#object1:after { + content: ''; + position: absolute; + top: auto; + width: 1px; + height: 1px; + background: transparent; + + box-shadow: 779px 1331px #fff, 324px 42px #fff, 303px 586px #fff, + 1312px 276px #fff, 451px 625px #fff, 521px 1931px #fff, 1087px 1871px #fff, + 36px 1546px #fff, 132px 934px #fff, 1698px 901px #fff, 1418px 664px #fff, + 1448px 1157px #fff, 1084px 232px #fff, 347px 1776px #fff, 1722px 243px #fff, + 1629px 835px #fff, 479px 969px #fff, 1231px 960px #fff, 586px 384px #fff, + 164px 527px #fff, 8px 646px #fff, 1150px 1126px #fff, 665px 1357px #fff, + 1556px 1982px #fff, 1260px 1961px #fff, 1675px 1741px #fff, + 1843px 1514px #fff, 718px 1628px #fff, 242px 1343px #fff, 1497px 1880px #fff, + 1364px 230px #fff, 1739px 1302px #fff, 636px 959px #fff, 304px 686px #fff, + 614px 751px #fff, 1935px 816px #fff, 1428px 60px #fff, 355px 335px #fff, + 1594px 158px #fff, 90px 60px #fff, 1553px 162px #fff, 1239px 1825px #fff, + 1945px 587px #fff, 749px 1785px #fff, 1987px 1172px #fff, 1301px 1237px #fff, + 1039px 342px #fff, 1585px 1481px #fff, 995px 1048px #fff, 524px 932px #fff, + 214px 413px #fff, 1701px 1300px #fff, 1037px 1613px #fff, 1871px 996px #fff, + 1360px 1635px #fff, 1110px 1313px #fff, 412px 1783px #fff, 1949px 177px #fff, + 903px 1854px #fff, 700px 1936px #fff, 378px 125px #fff, 308px 834px #fff, + 1118px 962px #fff, 1350px 1929px #fff, 781px 1811px #fff, 561px 137px #fff, + 757px 1148px #fff, 1670px 1979px #fff, 343px 739px #fff, 945px 795px #fff, + 576px 1903px #fff, 1078px 1436px #fff, 1583px 450px #fff, 1366px 474px #fff, + 297px 1873px #fff, 192px 162px #fff, 1624px 1633px #fff, 59px 453px #fff, + 82px 1872px #fff, 1933px 498px #fff, 1966px 1974px #fff, 1975px 1688px #fff, + 779px 314px #fff, 1858px 1543px #fff, 73px 1507px #fff, 1693px 975px #fff, + 1683px 108px #fff, 1768px 1654px #fff, 654px 14px #fff, 494px 171px #fff, + 1689px 1895px #fff, 1660px 263px #fff, 1031px 903px #fff, 1203px 1393px #fff, + 1333px 1421px #fff, 1113px 41px #fff, 1206px 1645px #fff, 1325px 1635px #fff, + 142px 388px #fff, 572px 215px #fff, 1535px 296px #fff, 1419px 407px #fff, + 1379px 1003px #fff, 329px 469px #fff, 1791px 1652px #fff, 935px 1802px #fff, + 1330px 1820px #fff, 421px 1933px #fff, 828px 365px #fff, 275px 316px #fff, + 707px 960px #fff, 1605px 1554px #fff, 625px 58px #fff, 717px 1697px #fff, + 1669px 246px #fff, 1925px 322px #fff, 1154px 1803px #fff, 1929px 295px #fff, + 1248px 240px #fff, 1045px 1755px #fff, 166px 942px #fff, 1888px 1773px #fff, + 678px 1963px #fff, 1370px 569px #fff, 1974px 1400px #fff, 1786px 460px #fff, + 51px 307px #fff, 784px 1400px #fff, 730px 1258px #fff, 1712px 393px #fff, + 416px 170px #fff, 1797px 1932px #fff, 572px 219px #fff, 1557px 1856px #fff, + 218px 8px #fff, 348px 1334px #fff, 469px 413px #fff, 385px 1738px #fff, + 1357px 1818px #fff, 240px 942px #fff, 248px 1847px #fff, 1535px 806px #fff, + 236px 1514px #fff, 1429px 1556px #fff, 73px 1633px #fff, 1398px 1121px #fff, + 671px 1301px #fff, 1404px 1663px #fff, 740px 1018px #fff, 1600px 377px #fff, + 785px 514px #fff, 112px 1084px #fff, 1915px 1887px #fff, 1463px 1848px #fff, + 687px 1115px #fff, 1268px 1768px #fff, 1729px 1425px #fff, + 1284px 1022px #fff, 801px 974px #fff, 1975px 1317px #fff, 1354px 834px #fff, + 1446px 1484px #fff, 1283px 1786px #fff, 11px 523px #fff, 1842px 236px #fff, + 1355px 654px #fff, 429px 7px #fff, 1033px 1128px #fff, 157px 297px #fff, + 545px 635px #fff, 52px 1080px #fff, 827px 1520px #fff, 1121px 490px #fff, + 9px 309px #fff, 1744px 1586px #fff, 1014px 417px #fff, 1534px 524px #fff, + 958px 552px #fff, 1403px 1496px #fff, 387px 703px #fff, 1522px 548px #fff, + 1355px 282px #fff, 1532px 601px #fff, 1838px 790px #fff, 290px 259px #fff, + 295px 598px #fff, 1601px 539px #fff, 1561px 1272px #fff, 34px 1922px #fff, + 1024px 543px #fff, 467px 369px #fff, 722px 333px #fff, 1976px 1255px #fff, + 766px 983px #fff, 1582px 1285px #fff, 12px 512px #fff, 617px 1410px #fff, + 682px 577px #fff, 1334px 1438px #fff, 439px 327px #fff, 1617px 1661px #fff, + 673px 129px #fff, 794px 941px #fff, 1386px 1902px #fff, 37px 1353px #fff, + 1467px 1353px #fff, 416px 18px #fff, 187px 344px #fff, 200px 1898px #fff, + 1491px 1619px #fff, 811px 347px #fff, 924px 1827px #fff, 945px 217px #fff, + 1735px 1228px #fff, 379px 1890px #fff, 79px 761px #fff, 825px 1837px #fff, + 1980px 1558px #fff, 1308px 1573px #fff, 1488px 1726px #fff, + 382px 1208px #fff, 522px 595px #fff, 1277px 1898px #fff, 354px 552px #fff, + 161px 1784px #fff, 614px 251px #fff, 526px 1576px #fff, 17px 212px #fff, + 179px 996px #fff, 467px 1208px #fff, 1944px 1838px #fff, 1140px 1093px #fff, + 858px 1007px #fff, 200px 1064px #fff, 423px 1964px #fff, 1945px 439px #fff, + 1377px 689px #fff, 1120px 1437px #fff, 1876px 668px #fff, 907px 1324px #fff, + 343px 1976px #fff, 1816px 1501px #fff, 1849px 177px #fff, 647px 91px #fff, + 1984px 1012px #fff, 1336px 1300px #fff, 128px 648px #fff, 305px 1060px #fff, + 1324px 826px #fff, 1263px 1314px #fff, 1801px 629px #fff, 1614px 1555px #fff, + 1634px 90px #fff, 1603px 452px #fff, 891px 1984px #fff, 1556px 1906px #fff, + 121px 68px #fff, 1676px 1714px #fff, 516px 936px #fff, 1947px 1492px #fff, + 1455px 1519px #fff, 45px 602px #fff, 205px 1039px #fff, 793px 172px #fff, + 1562px 1739px #fff, 1056px 110px #fff, 1512px 379px #fff, 1795px 1621px #fff, + 1848px 607px #fff, 262px 1719px #fff, 477px 991px #fff, 483px 883px #fff, + 1239px 1197px #fff, 1496px 647px #fff, 1649px 25px #fff, 1491px 1946px #fff, + 119px 996px #fff, 179px 1472px #fff, 1341px 808px #fff, 1565px 1700px #fff, + 407px 1544px #fff, 1754px 357px #fff, 1288px 981px #fff, 902px 1997px #fff, + 1755px 1668px #fff, 186px 877px #fff, 1202px 1882px #fff, 461px 1213px #fff, + 1400px 748px #fff, 1969px 1899px #fff, 809px 522px #fff, 514px 1219px #fff, + 374px 275px #fff, 938px 1973px #fff, 357px 552px #fff, 144px 1722px #fff, + 1572px 912px #fff, 402px 1858px #fff, 1544px 1195px #fff, 667px 1257px #fff, + 727px 1496px #fff, 993px 232px #fff, 1772px 313px #fff, 1040px 1590px #fff, + 1204px 1973px #fff, 1268px 79px #fff, 1555px 1048px #fff, 986px 1707px #fff, + 978px 1710px #fff, 713px 360px #fff, 407px 863px #fff, 461px 736px #fff, + 284px 1608px #fff, 103px 430px #fff, 1283px 1319px #fff, 977px 1186px #fff, + 1966px 1516px #fff, 1287px 1129px #fff, 70px 1098px #fff, 1189px 889px #fff, + 1126px 1734px #fff, 309px 1292px #fff, 879px 764px #fff, 65px 473px #fff, + 1003px 1959px #fff, 658px 791px #fff, 402px 1576px #fff, 35px 622px #fff, + 529px 1589px #fff, 164px 666px #fff, 1876px 1290px #fff, 1541px 526px #fff, + 270px 1297px #fff, 440px 865px #fff, 1500px 802px #fff, 182px 1754px #fff, + 1264px 892px #fff, 272px 1249px #fff, 1289px 1535px #fff, 190px 1646px #fff, + 955px 242px #fff, 1456px 1597px #fff, 1727px 1983px #fff, 635px 801px #fff, + 226px 455px #fff, 1396px 1710px #fff, 849px 1863px #fff, 237px 1264px #fff, + 839px 140px #fff, 1122px 735px #fff, 1280px 15px #fff, 1318px 242px #fff, + 1819px 1148px #fff, 333px 1392px #fff, 1949px 553px #fff, 1878px 1332px #fff, + 467px 548px #fff, 1812px 1082px #fff, 1067px 193px #fff, 243px 156px #fff, + 483px 1616px #fff, 1714px 933px #fff, 759px 1800px #fff, 1822px 995px #fff, + 1877px 572px #fff, 581px 1084px #fff, 107px 732px #fff, 642px 1837px #fff, + 166px 1493px #fff, 1555px 198px #fff, 819px 307px #fff, 947px 345px #fff, + 827px 224px #fff, 927px 1394px #fff, 540px 467px #fff, 1093px 405px #fff, + 1140px 927px #fff, 130px 529px #fff, 33px 1980px #fff, 1147px 1663px #fff, + 1616px 1436px #fff, 528px 710px #fff, 798px 1100px #fff, 505px 1480px #fff, + 899px 641px #fff, 1909px 1949px #fff, 1311px 964px #fff, 979px 1301px #fff, + 1393px 969px #fff, 1793px 1886px #fff, 292px 357px #fff, 1196px 1718px #fff, + 1290px 1994px #fff, 537px 1973px #fff, 1181px 1674px #fff, + 1740px 1566px #fff, 1307px 265px #fff, 922px 522px #fff, 1892px 472px #fff, + 384px 1746px #fff, 392px 1098px #fff, 647px 548px #fff, 390px 1498px #fff, + 1246px 138px #fff, 730px 876px #fff, 192px 1472px #fff, 1790px 1789px #fff, + 928px 311px #fff, 1253px 1647px #fff, 747px 1921px #fff, 1561px 1025px #fff, + 1533px 1292px #fff, 1985px 195px #fff, 728px 729px #fff, 1712px 1936px #fff, + 512px 1717px #fff, 1528px 483px #fff, 313px 1642px #fff, 281px 1849px #fff, + 1212px 799px #fff, 435px 1191px #fff, 1422px 611px #fff, 1718px 1964px #fff, + 411px 944px #fff, 210px 636px #fff, 1502px 1295px #fff, 1434px 349px #fff, + 769px 60px #fff, 747px 1053px #fff, 789px 504px #fff, 1436px 1264px #fff, + 1893px 1225px #fff, 1394px 1788px #fff, 1108px 1317px #fff, + 1673px 1395px #fff, 854px 1010px #fff, 1705px 80px #fff, 1858px 148px #fff, + 1729px 344px #fff, 1388px 664px #fff, 895px 406px #fff, 1479px 157px #fff, + 1441px 1157px #fff, 552px 1900px #fff, 516px 364px #fff, 1647px 189px #fff, + 1427px 1071px #fff, 785px 729px #fff, 1080px 1710px #fff, 504px 204px #fff, + 1177px 1622px #fff, 657px 34px #fff, 1296px 1099px #fff, 248px 180px #fff, + 1212px 1568px #fff, 667px 1562px #fff, 695px 841px #fff, 1608px 1247px #fff, + 751px 882px #fff, 87px 167px #fff, 607px 1368px #fff, 1363px 1203px #fff, + 1836px 317px #fff, 1668px 1703px #fff, 830px 1154px #fff, 1721px 1398px #fff, + 1601px 1280px #fff, 976px 874px #fff, 1743px 254px #fff, 1020px 1815px #fff, + 1670px 1766px #fff, 1890px 735px #fff, 1379px 136px #fff, 1864px 695px #fff, + 206px 965px #fff, 1404px 1932px #fff, 1923px 1360px #fff, 247px 682px #fff, + 519px 1708px #fff, 645px 750px #fff, 1164px 1204px #fff, 834px 323px #fff, + 172px 1350px #fff, 213px 972px #fff, 1837px 190px #fff, 285px 1806px #fff, + 1047px 1299px #fff, 1548px 825px #fff, 1730px 324px #fff, 1346px 1909px #fff, + 772px 270px #fff, 345px 1190px #fff, 478px 1433px #fff, 1479px 25px #fff, + 1994px 1830px #fff, 1744px 732px #fff, 20px 1635px #fff, 690px 1795px #fff, + 1594px 569px #fff, 579px 245px #fff, 1398px 733px #fff, 408px 1352px #fff, + 1774px 120px #fff, 1152px 1370px #fff, 1698px 1810px #fff, 710px 1450px #fff, + 665px 286px #fff, 493px 1720px #fff, 786px 5px #fff, 637px 1140px #fff, + 764px 324px #fff, 927px 310px #fff, 938px 1424px #fff, 1884px 744px #fff, + 913px 462px #fff, 1831px 1936px #fff, 1527px 249px #fff, 36px 1381px #fff, + 1597px 581px #fff, 1530px 355px #fff, 949px 459px #fff, 799px 828px #fff, + 242px 1471px #fff, 654px 797px #fff, 796px 594px #fff, 1365px 678px #fff, + 752px 23px #fff, 1630px 541px #fff, 982px 72px #fff, 1733px 1831px #fff, + 21px 412px #fff, 775px 998px #fff, 335px 1945px #fff, 264px 583px #fff, + 158px 1311px #fff, 528px 164px #fff, 1978px 574px #fff, 717px 1203px #fff, + 734px 1591px #fff, 1555px 820px #fff, 16px 1943px #fff, 1625px 1177px #fff, + 1236px 690px #fff, 1585px 1590px #fff, 1737px 1728px #fff, 721px 698px #fff, + 1804px 1186px #fff, 166px 980px #fff, 1850px 230px #fff, 330px 1712px #fff, + 95px 797px #fff, 1948px 1078px #fff, 469px 939px #fff, 1269px 1899px #fff, + 955px 1220px #fff, 1137px 1075px #fff, 312px 1293px #fff, 986px 1762px #fff, + 1103px 1238px #fff, 428px 1993px #fff, 355px 570px #fff, 977px 1836px #fff, + 1395px 1092px #fff, 276px 913px #fff, 1743px 656px #fff, 773px 502px #fff, + 1686px 1322px #fff, 1516px 1945px #fff, 1334px 501px #fff, 266px 156px #fff, + 455px 655px #fff, 798px 72px #fff, 1059px 1259px #fff, 1402px 1687px #fff, + 236px 1329px #fff, 1455px 786px #fff, 146px 1228px #fff, 1851px 823px #fff, + 1062px 100px #fff, 1220px 953px #fff, 20px 1826px #fff, 36px 1063px #fff, + 1525px 338px #fff, 790px 1521px #fff, 741px 1099px #fff, 288px 1489px #fff, + 700px 1060px #fff, 390px 1071px #fff, 411px 1036px #fff, 1853px 1072px #fff, + 1446px 1085px #fff, 1164px 874px #fff, 924px 925px #fff, 291px 271px #fff, + 1257px 1964px #fff, 1580px 1352px #fff, 1507px 1216px #fff, 211px 956px #fff, + 985px 1195px #fff, 975px 1640px #fff, 518px 101px #fff, 663px 1395px #fff, + 914px 532px #fff, 145px 1320px #fff, 69px 1397px #fff, 982px 523px #fff, + 257px 725px #fff, 1599px 831px #fff, 1636px 1513px #fff, 1250px 1158px #fff, + 1132px 604px #fff, 183px 102px #fff, 1057px 318px #fff, 1247px 1835px #fff, + 1983px 1110px #fff, 1077px 1455px #fff, 921px 1770px #fff, 806px 1350px #fff, + 1938px 1992px #fff, 855px 1260px #fff, 902px 1345px #fff, 658px 1908px #fff, + 1845px 679px #fff, 712px 1482px #fff, 595px 950px #fff, 1784px 1992px #fff, + 1847px 1785px #fff, 691px 1004px #fff, 175px 1179px #fff, 1666px 1911px #fff, + 41px 61px #fff, 971px 1080px #fff, 1830px 1450px #fff, 1351px 1518px #fff, + 1257px 99px #fff, 1395px 1498px #fff, 1117px 252px #fff, 1779px 597px #fff, + 1346px 729px #fff, 1108px 1144px #fff, 402px 691px #fff, 72px 496px #fff, + 1673px 1604px #fff, 1497px 974px #fff, 1865px 1664px #fff, 88px 806px #fff, + 918px 77px #fff, 244px 1118px #fff, 256px 1820px #fff, 1851px 1840px #fff, + 605px 1851px #fff, 634px 383px #fff, 865px 37px #fff, 943px 1024px #fff, + 1951px 177px #fff, 1097px 523px #fff, 985px 1700px #fff, 1243px 122px #fff, + 768px 1070px #fff, 468px 194px #fff, 320px 1867px #fff, 1850px 185px #fff, + 380px 1616px #fff, 468px 1294px #fff, 1122px 1743px #fff, 884px 299px #fff, + 1300px 1917px #fff, 1860px 396px #fff, 1270px 990px #fff, 529px 733px #fff, + 1975px 1347px #fff, 1885px 685px #fff, 226px 506px #fff, 651px 878px #fff, + 1323px 680px #fff, 1284px 680px #fff, 238px 1967px #fff, 911px 174px #fff, + 1111px 521px #fff, 1150px 85px #fff, 794px 502px #fff, 484px 1856px #fff, + 1809px 368px #fff, 112px 953px #fff, 590px 1009px #fff, 1655px 311px #fff, + 100px 1026px #fff, 1803px 352px #fff, 865px 306px #fff, 1077px 1019px #fff, + 1335px 872px #fff, 1647px 1298px #fff, 1233px 1387px #fff, 698px 1036px #fff, + 659px 1860px #fff, 388px 1412px #fff, 1212px 458px #fff, 755px 1468px #fff, + 696px 1654px #fff, 1144px 60px #fff; +} + +#object2 { + width: 2px; + height: 2px; + background: transparent; + animation: animStar 180s linear infinite; + + box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff, + 878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff, + 121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff, + 523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff, + 1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff, + 1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff, + 1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff, + 24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff, + 1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff, + 744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff, + 270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff, + 1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff, + 69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff, + 1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff, + 1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff, + 65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff, + 1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff, + 1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff, + 686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff, + 582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff, + 270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff, + 1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff, + 1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff, + 443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff, + 1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff, + 331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff, + 822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff, + 689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff, + 819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff, + 887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff, + 1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff, + 1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff, + 163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff, + 1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff, + 1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff, + 219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff, + 274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff, + 1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff, + 161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff, + 318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff, + 1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff, + 1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff, + 1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff, + 1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff, + 1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff, + 528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff, + 100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff, + 987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff, + 1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff, + 156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff, + 986px 1529px #fff, 1667px 1137px #fff; +} + +#object2:after { + content: ''; + position: absolute; + top: auto; + width: 2px; + height: 2px; + background: transparent; + + box-shadow: 1448px 320px #fff, 1775px 1663px #fff, 332px 1364px #fff, + 878px 340px #fff, 569px 1832px #fff, 1422px 1684px #fff, 1946px 1907px #fff, + 121px 979px #fff, 1044px 1069px #fff, 463px 381px #fff, 423px 112px #fff, + 523px 1179px #fff, 779px 654px #fff, 1398px 694px #fff, 1085px 1464px #fff, + 1599px 1869px #fff, 801px 1882px #fff, 779px 1231px #fff, 552px 932px #fff, + 1057px 1196px #fff, 282px 1280px #fff, 496px 1986px #fff, 1833px 1120px #fff, + 1802px 1293px #fff, 6px 1696px #fff, 412px 1902px #fff, 605px 438px #fff, + 24px 1212px #fff, 234px 1320px #fff, 544px 344px #fff, 1107px 170px #fff, + 1603px 196px #fff, 905px 648px #fff, 68px 1458px #fff, 649px 1969px #fff, + 744px 675px #fff, 1127px 478px #fff, 714px 1814px #fff, 1486px 526px #fff, + 270px 1636px #fff, 1931px 149px #fff, 1807px 378px #fff, 8px 390px #fff, + 1415px 699px #fff, 1473px 1211px #fff, 1590px 141px #fff, 270px 1705px #fff, + 69px 1423px #fff, 1108px 1053px #fff, 1946px 128px #fff, 371px 371px #fff, + 1490px 220px #fff, 357px 1885px #fff, 363px 363px #fff, 1896px 1256px #fff, + 1979px 1050px #fff, 947px 1342px #fff, 1754px 242px #fff, 514px 974px #fff, + 65px 1477px #fff, 1840px 547px #fff, 950px 695px #fff, 459px 1150px #fff, + 1124px 1502px #fff, 481px 940px #fff, 680px 839px #fff, 797px 1169px #fff, + 1977px 1491px #fff, 734px 1724px #fff, 210px 298px #fff, 816px 628px #fff, + 686px 770px #fff, 1721px 267px #fff, 1663px 511px #fff, 1481px 1141px #fff, + 582px 248px #fff, 1308px 953px #fff, 628px 657px #fff, 897px 1535px #fff, + 270px 931px #fff, 791px 467px #fff, 1336px 1732px #fff, 1013px 1653px #fff, + 1911px 956px #fff, 587px 816px #fff, 83px 456px #fff, 930px 1478px #fff, + 1587px 1694px #fff, 614px 1200px #fff, 302px 1782px #fff, 1711px 1432px #fff, + 443px 904px #fff, 1666px 714px #fff, 1588px 1167px #fff, 273px 1075px #fff, + 1679px 461px #fff, 721px 664px #fff, 1202px 10px #fff, 166px 1126px #fff, + 331px 1628px #fff, 430px 1565px #fff, 1585px 509px #fff, 640px 38px #fff, + 822px 837px #fff, 1760px 1664px #fff, 1122px 1458px #fff, 398px 131px #fff, + 689px 285px #fff, 460px 652px #fff, 1627px 365px #fff, 348px 1648px #fff, + 819px 1946px #fff, 981px 1917px #fff, 323px 76px #fff, 979px 684px #fff, + 887px 536px #fff, 1348px 1596px #fff, 1055px 666px #fff, 1402px 1797px #fff, + 1300px 1055px #fff, 937px 238px #fff, 1474px 1815px #fff, 1144px 1710px #fff, + 1629px 1087px #fff, 911px 919px #fff, 771px 819px #fff, 403px 720px #fff, + 163px 736px #fff, 1062px 238px #fff, 1774px 818px #fff, 1874px 1178px #fff, + 1177px 699px #fff, 1244px 1244px #fff, 1371px 58px #fff, 564px 1515px #fff, + 1824px 487px #fff, 929px 702px #fff, 394px 1348px #fff, 1161px 641px #fff, + 219px 1841px #fff, 358px 941px #fff, 140px 1759px #fff, 1019px 1345px #fff, + 274px 436px #fff, 1433px 1605px #fff, 1798px 1426px #fff, 294px 1848px #fff, + 1681px 1877px #fff, 1344px 1824px #fff, 1439px 1632px #fff, + 161px 1012px #fff, 1308px 588px #fff, 1789px 582px #fff, 721px 1910px #fff, + 318px 218px #fff, 607px 319px #fff, 495px 535px #fff, 1552px 1575px #fff, + 1562px 67px #fff, 403px 926px #fff, 1096px 1800px #fff, 1814px 1709px #fff, + 1882px 1831px #fff, 533px 46px #fff, 823px 969px #fff, 530px 165px #fff, + 1030px 352px #fff, 1681px 313px #fff, 338px 115px #fff, 1607px 211px #fff, + 1718px 1184px #fff, 1589px 659px #fff, 278px 355px #fff, 464px 1464px #fff, + 1165px 277px #fff, 950px 694px #fff, 1746px 293px #fff, 793px 911px #fff, + 528px 773px #fff, 1883px 1694px #fff, 748px 182px #fff, 1924px 1531px #fff, + 100px 636px #fff, 1473px 1445px #fff, 1264px 1244px #fff, 850px 1377px #fff, + 987px 1976px #fff, 933px 1761px #fff, 922px 1270px #fff, 500px 396px #fff, + 1324px 8px #fff, 1967px 1814px #fff, 1072px 1401px #fff, 961px 37px #fff, + 156px 81px #fff, 1915px 502px #fff, 1076px 1846px #fff, 152px 1669px #fff, + 986px 1529px #fff, 1667px 1137px #fff; +} + +#object3 { + width: 3px; + height: 3px; + background: transparent; + animation: animStar 240s linear infinite; + + box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff, + 948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff, + 1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff, + 921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff, + 1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff, + 383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff, + 1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff, + 992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff, + 1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff, + 1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff, + 1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff, + 1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff, + 1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff, + 1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff, + 473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff, + 1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff, + 144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff, + 1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff, + 1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff, + 407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff, + 1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff, + 1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff, + 1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff, + 16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff, + 494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff, + 498px 1947px #fff, 617px 880px #fff, 240px 403px #fff; +} + +#object3:after { + content: ''; + position: absolute; + top: auto; + width: 3px; + height: 3px; + background: transparent; + + box-shadow: 387px 1878px #fff, 760px 1564px #fff, 1487px 999px #fff, + 948px 1828px #fff, 1977px 1001px #fff, 1284px 1963px #fff, 656px 284px #fff, + 1268px 1635px #fff, 1820px 598px #fff, 642px 1900px #fff, 296px 57px #fff, + 921px 1620px #fff, 476px 1858px #fff, 658px 613px #fff, 1171px 1363px #fff, + 1419px 283px #fff, 1037px 731px #fff, 503px 663px #fff, 1562px 463px #fff, + 383px 1197px #fff, 1171px 1233px #fff, 876px 1768px #fff, 856px 1615px #fff, + 1375px 1924px #fff, 1725px 918px #fff, 952px 119px #fff, 768px 1212px #fff, + 992px 1462px #fff, 1929px 717px #fff, 1947px 755px #fff, 1818px 1123px #fff, + 1896px 1672px #fff, 460px 198px #fff, 256px 271px #fff, 752px 544px #fff, + 1222px 1859px #fff, 1851px 443px #fff, 313px 1858px #fff, 709px 446px #fff, + 1546px 697px #fff, 674px 1155px #fff, 1112px 130px #fff, 355px 1790px #fff, + 1496px 974px #fff, 1696px 480px #fff, 1316px 1265px #fff, 1645px 1063px #fff, + 1182px 237px #fff, 427px 1582px #fff, 859px 253px #fff, 458px 939px #fff, + 1517px 1644px #fff, 1943px 60px #fff, 212px 1650px #fff, 966px 1786px #fff, + 473px 712px #fff, 130px 76px #fff, 1417px 1186px #fff, 909px 1580px #fff, + 1913px 762px #fff, 204px 1143px #fff, 1998px 1057px #fff, 1468px 1301px #fff, + 144px 1676px #fff, 21px 1601px #fff, 382px 1362px #fff, 912px 753px #fff, + 1488px 1405px #fff, 802px 156px #fff, 174px 550px #fff, 338px 1366px #fff, + 1197px 774px #fff, 602px 486px #fff, 682px 1877px #fff, 348px 1503px #fff, + 407px 1139px #fff, 950px 1400px #fff, 922px 1139px #fff, 1697px 293px #fff, + 1238px 1281px #fff, 1038px 1197px #fff, 376px 1889px #fff, + 1255px 1680px #fff, 1008px 1316px #fff, 1538px 1447px #fff, + 1186px 874px #fff, 1967px 640px #fff, 1341px 19px #fff, 29px 1732px #fff, + 16px 1650px #fff, 1021px 1075px #fff, 723px 424px #fff, 1175px 41px #fff, + 494px 1957px #fff, 1296px 431px #fff, 175px 1507px #fff, 831px 121px #fff, + 498px 1947px #fff, 617px 880px #fff, 240px 403px #fff; +}