mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-01-14 10:35:14 +00:00
Merge pull request #2 from Fluffy-Bean/deepsource-transform-36a8a0f8
style: format code with Prettier
This commit is contained in:
commit
fcc026d06d
|
@ -1,4 +1,4 @@
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from "astro/config";
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({});
|
export default defineConfig({});
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import { z, defineCollection } from 'astro:content';
|
import { z, defineCollection } from "astro:content";
|
||||||
|
|
||||||
|
|
||||||
const postsCollection = defineCollection({
|
const postsCollection = defineCollection({
|
||||||
type: "content",
|
type: "content",
|
||||||
|
@ -25,16 +24,16 @@ const projectsCollection = defineCollection({
|
||||||
const certificatesCollection = defineCollection({
|
const certificatesCollection = defineCollection({
|
||||||
type: "data",
|
type: "data",
|
||||||
schema: z.object({
|
schema: z.object({
|
||||||
title: z.string(),
|
title: z.string(),
|
||||||
provider: z.string(),
|
provider: z.string(),
|
||||||
achieved: z.date(),
|
achieved: z.date(),
|
||||||
skills: z.array(z.string()).optional(),
|
skills: z.array(z.string()).optional(),
|
||||||
link: z.string().optional(),
|
link: z.string().optional(),
|
||||||
}),
|
}),
|
||||||
})
|
});
|
||||||
|
|
||||||
export const collections = {
|
export const collections = {
|
||||||
"posts": postsCollection,
|
posts: postsCollection,
|
||||||
"projects": projectsCollection,
|
projects: projectsCollection,
|
||||||
"certificates": certificatesCollection,
|
certificates: certificatesCollection,
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,10 +6,10 @@ image:
|
||||||
url: "https://docs.astro.build/assets/arc.webp"
|
url: "https://docs.astro.build/assets/arc.webp"
|
||||||
alt: "Thumbnail of Astro arcs."
|
alt: "Thumbnail of Astro arcs."
|
||||||
tags:
|
tags:
|
||||||
- "GwaGwa"
|
- "GwaGwa"
|
||||||
- "Gaming"
|
- "Gaming"
|
||||||
- "Urchin"
|
- "Urchin"
|
||||||
- "Fortnite"
|
- "Fortnite"
|
||||||
---
|
---
|
||||||
|
|
||||||
aurgh
|
aurgh
|
||||||
|
|
|
@ -6,7 +6,7 @@ image:
|
||||||
url: "https://docs.astro.build/assets/arc.webp"
|
url: "https://docs.astro.build/assets/arc.webp"
|
||||||
alt: "Thumbnail of Astro arcs."
|
alt: "Thumbnail of Astro arcs."
|
||||||
tags:
|
tags:
|
||||||
- "Faggor"
|
- "Faggor"
|
||||||
---
|
---
|
||||||
|
|
||||||
# Markdown Cheat Sheet
|
# Markdown Cheat Sheet
|
||||||
|
@ -22,7 +22,9 @@ These are the elements outlined in John Gruber’s original design document. All
|
||||||
### Heading
|
### Heading
|
||||||
|
|
||||||
# H1
|
# H1
|
||||||
|
|
||||||
## H2
|
## H2
|
||||||
|
|
||||||
### H3
|
### H3
|
||||||
|
|
||||||
### Bold
|
### Bold
|
||||||
|
@ -31,7 +33,7 @@ These are the elements outlined in John Gruber’s original design document. All
|
||||||
|
|
||||||
### Italic
|
### Italic
|
||||||
|
|
||||||
*italicized text*
|
_italicized text_
|
||||||
|
|
||||||
### Blockquote
|
### Blockquote
|
||||||
|
|
||||||
|
@ -45,9 +47,9 @@ These are the elements outlined in John Gruber’s original design document. All
|
||||||
|
|
||||||
### Unordered List
|
### Unordered List
|
||||||
|
|
||||||
- First item
|
- First item
|
||||||
- Second item
|
- Second item
|
||||||
- Third item
|
- Third item
|
||||||
|
|
||||||
### Code
|
### Code
|
||||||
|
|
||||||
|
@ -71,10 +73,10 @@ These elements extend the basic syntax by adding additional features. Not all Ma
|
||||||
|
|
||||||
### Table
|
### Table
|
||||||
|
|
||||||
| Syntax | Description |
|
| Syntax | Description |
|
||||||
| ----------- | ----------- |
|
| --------- | ----------- |
|
||||||
| Header | Title |
|
| Header | Title |
|
||||||
| Paragraph | Text |
|
| Paragraph | Text |
|
||||||
|
|
||||||
### Fenced Code Block
|
### Fenced Code Block
|
||||||
|
|
||||||
|
@ -107,9 +109,9 @@ term
|
||||||
|
|
||||||
### Task List
|
### Task List
|
||||||
|
|
||||||
- [x] Write the press release
|
- [x] Write the press release
|
||||||
- [ ] Update the website
|
- [ ] Update the website
|
||||||
- [ ] Contact the media
|
- [ ] Contact the media
|
||||||
|
|
||||||
### Emoji
|
### Emoji
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,10 @@ image:
|
||||||
url: "https://docs.astro.build/assets/arc.webp"
|
url: "https://docs.astro.build/assets/arc.webp"
|
||||||
alt: "Thumbnail of Astro arcs."
|
alt: "Thumbnail of Astro arcs."
|
||||||
tags:
|
tags:
|
||||||
- "GwaGwa"
|
- "GwaGwa"
|
||||||
- "Gaming"
|
- "Gaming"
|
||||||
- "Urchin"
|
- "Urchin"
|
||||||
- "Fortnite"
|
- "Fortnite"
|
||||||
---
|
---
|
||||||
|
|
||||||
AURGH
|
AURGH
|
|
@ -5,10 +5,10 @@ image:
|
||||||
url: "https://docs.astro.build/assets/arc.webp"
|
url: "https://docs.astro.build/assets/arc.webp"
|
||||||
alt: "Thumbnail of Astro arcs."
|
alt: "Thumbnail of Astro arcs."
|
||||||
tags:
|
tags:
|
||||||
- "GwaGwa"
|
- "GwaGwa"
|
||||||
- "Gaming"
|
- "Gaming"
|
||||||
- "Urchin"
|
- "Urchin"
|
||||||
- "Fortnite"
|
- "Fortnite"
|
||||||
---
|
---
|
||||||
|
|
||||||
Gay Balls even
|
Gay Balls even
|
|
@ -5,10 +5,10 @@ image:
|
||||||
url: "https://docs.astro.build/assets/arc.webp"
|
url: "https://docs.astro.build/assets/arc.webp"
|
||||||
alt: "Thumbnail of Astro arcs."
|
alt: "Thumbnail of Astro arcs."
|
||||||
tags:
|
tags:
|
||||||
- "GwaGwa"
|
- "GwaGwa"
|
||||||
- "Gaming"
|
- "Gaming"
|
||||||
- "Urchin"
|
- "Urchin"
|
||||||
- "Fortnite"
|
- "Fortnite"
|
||||||
---
|
---
|
||||||
|
|
||||||
gwagwa
|
gwagwa
|
|
@ -23,7 +23,7 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
content: '';
|
content: "";
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -40,13 +40,16 @@
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover, &:focus-visible {
|
&:hover,
|
||||||
|
&:focus-visible {
|
||||||
outline: 0 solid transparent;
|
outline: 0 solid transparent;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scaleX(100%);
|
transform: scaleX(100%);
|
||||||
transition: opacity 0.5s cubic-bezier(0,1,0,1), transform 0.5s cubic-bezier(0,1,0,1);
|
transition:
|
||||||
|
opacity 0.5s cubic-bezier(0, 1, 0, 1),
|
||||||
|
transform 0.5s cubic-bezier(0, 1, 0, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
*, *::before, *::after {
|
*,
|
||||||
|
*::before,
|
||||||
|
*::after {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-family: 'IBM Plex Mono', monospace;
|
font-family: "IBM Plex Mono", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|
Loading…
Reference in a new issue