-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added scratchpad dir * Installed Alpine * [WIP] began integrating Tailwind and accompanying theme * [WIP] Set up basic views for sources * Adds new UI to media profiles page * Removes unneeded view
- Loading branch information
1 parent
013b2cc
commit 89497c4
Showing
76 changed files
with
1,029 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,4 @@ npm-debug.log | |
.env | ||
.DS_Store | ||
scratchpad.md | ||
/scratchpad/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/** | ||
* @license | ||
* | ||
* Font Family: Satoshi | ||
* Designed by: Deni Anggara | ||
* URL: https://www.fontshare.com/fonts/satoshi | ||
* © 2023 Indian Type Foundry | ||
* | ||
* Font Styles: | ||
* Satoshi Light | ||
* Satoshi Light Italic | ||
* Satoshi Regular | ||
* Satoshi Italic | ||
* Satoshi Medium | ||
* Satoshi Medium Italic | ||
* Satoshi Bold | ||
* Satoshi Bold Italic | ||
* Satoshi Black | ||
* Satoshi Black Italic | ||
* | ||
*/ | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-Light.woff2'), url('/fonts/satoshi/Satoshi-Light.woff'), | ||
url('/fonts/satoshi/Satoshi-Light.ttf'); | ||
font-weight: 300; | ||
font-display: swap; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-LightItalic.woff2'), | ||
url('/fonts/satoshi/Satoshi-LightItalic.woff'), url('/fonts/satoshi/Satoshi-LightItalic.ttf'); | ||
font-weight: 300; | ||
font-display: swap; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-Regular.woff2'), url('/fonts/satoshi/Satoshi-Regular.woff'), | ||
url('/fonts/satoshi/Satoshi-Regular.ttf'); | ||
font-weight: 400; | ||
font-display: swap; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-Italic.woff2'), url('/fonts/satoshi/Satoshi-Italic.woff'), | ||
url('/fonts/satoshi/Satoshi-Italic.ttf'); | ||
font-weight: 400; | ||
font-display: swap; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-Medium.woff2'), url('/fonts/satoshi/Satoshi-Medium.woff'), | ||
url('/fonts/satoshi/Satoshi-Medium.ttf'); | ||
font-weight: 500; | ||
font-display: swap; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-MediumItalic.woff2'), | ||
url('/fonts/satoshi/Satoshi-MediumItalic.woff'), url('/fonts/satoshi/Satoshi-MediumItalic.ttf'); | ||
font-weight: 500; | ||
font-display: swap; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-Bold.woff2'), url('/fonts/satoshi/Satoshi-Bold.woff'), | ||
url('/fonts/satoshi/Satoshi-Bold.ttf'); | ||
font-weight: 700; | ||
font-display: swap; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-BoldItalic.woff2'), url('/fonts/satoshi/Satoshi-BoldItalic.woff'), | ||
url('/fonts/satoshi/Satoshi-BoldItalic.ttf'); | ||
font-weight: 700; | ||
font-display: swap; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Satoshi'; | ||
src: url('/fonts/satoshi/Satoshi-BlackItalic.woff2'), | ||
url('/fonts/satoshi/Satoshi-BlackItalic.woff'), url('/fonts/satoshi/Satoshi-BlackItalic.ttf'); | ||
font-weight: 900; | ||
font-display: swap; | ||
font-style: italic; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"description": "Use this one for actual JS deps used in-app" | ||
"description": "Use this one for actual JS deps used in-app", | ||
"dependencies": { | ||
"alpinejs": "^3.13.5" | ||
} | ||
} |
Oops, something went wrong.