Skip to content

Commit

Permalink
fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
strawmelonjuice committed Oct 6, 2023
1 parent 4501fc3 commit 24a0f5e
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ dist
/site

# Submlime (opened in sublime a time.)
reset.sublime-workspace
/reset.sublime-workspace
10 changes: 9 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,12 @@

# Rome and Biome configs
/rome.json
/biome.json
/biome.json

# Logs
/logs

# Files that npm should ignore smh
/reset.sublime-workspace
/cynthiacms-*.tgz
/.*
Binary file modified clean-cyn.tar.gz
Binary file not shown.
44 changes: 44 additions & 0 deletions clean_slate/GETTINGSTARTED.MD
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,49 @@
So, you have a clean Cynthia setup right here huh? Wanna get started setting it up?

## What do all these files mean?

> Explaining the Cynthia filetree.


## Cynthia file tree

> **cynthia folder**
>
> - **main.js** // Cynthia itself
> - **clean-cyn.tar.gz** // Stores a clean CynthiaConfig
> - **package.json** // Tells NPM how to start and install Cynthia
> - **README.md** // The Cynthia Readme file
> > **node_modules** // created by NPM, stores dependencies of Cynthia
> - **.env**
> >**cynthia_config**
> >
> >> **modes**
> >>
> >> - **default.jsonc**
> >> - **strawmelonjuice-cynthia.jsonc**
> >
> >> **styles**
> >>
> >> - **cynthia.css**
> >> - **default.css**
> >
> >> **templates**
> >>
> >> - **default.handlebars**
> >> - **cynthia-docs.handlebars**
>
> > **site**
> >
> > > **assets**
> > >
> > > > **svg**
> > > >
> > > > - **home.svg**
> > > > - **cynthia.svg**
> > >
> > > **pages**
> > >
> > > - **index.md**
> > - **published.jsonc**
11 changes: 11 additions & 0 deletions clean_slate/cynthia_config/styles/cynthia.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ body {
right: 0px;
bottom: 0px;
font-family: 'Fira Sans',sans-serif;
overflow-y: clip;
}
main {
border-radius: 10px;
Expand All @@ -14,6 +15,7 @@ main {
margin-left: 25VW;
padding: 1px 16px;
margin-right: auto;
overflow-y: auto;
}

#link-menu {
Expand Down Expand Up @@ -58,4 +60,13 @@ main {
text-align: center;
float: none;
}
}

blockquote {
background-color: rgba(220, 238, 255, 0.559);
border-top: 10px none #555555;
border-right: 2px ridge #555555;
border-bottom: 2px dashed #ffff8f;
border-left: 5px groove #555555;
padding: 2px;
}
10 changes: 0 additions & 10 deletions clean_slate/reset.sh

This file was deleted.

2 changes: 1 addition & 1 deletion clean_slate/site/published.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"content": {
"type": "markdown",
"location": "local",
"path": "../GETTINGSTARTED.MD"
"path": "../../GETTINGSTARTED.MD"
},
"mode": "strawmelonjuice-cynthia"
},
Expand Down

0 comments on commit 24a0f5e

Please sign in to comment.