Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8275589 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredrummler committed Mar 28, 2024
0 parents commit f22aa1a
Show file tree
Hide file tree
Showing 90 changed files with 10,918 additions and 0 deletions.
1 change: 1 addition & 0 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
styles.goatbytes.io
1 change: 1 addition & 0 deletions about/index.html

Large diffs are not rendered by default.

62 changes: 62 additions & 0 deletions assets/cards/languages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
[
{
"title": "C++",
"url": "lang/cpp.md",
"image": "assets/img/cplusplus.svg"
},
{
"title": "C#",
"url": "lang/csharp.md",
"image": "assets/img/csharp.svg"
},
{
"title": "Dart",
"url": "lang/dart.md",
"image": "assets/img/dart.svg"
},
{
"title": "Go",
"url": "lang/go.md",
"image": "assets/img/go.svg"
},
{
"title": "Java",
"url": "lang/java.md",
"image": "assets/img/java.svg"
},
{
"title": "JavaScript",
"url": "lang/javascript.md",
"image": "assets/img/javascript.svg"
},
{
"title": "Kotlin",
"url": "lang/kotlin.md",
"image": "assets/img/kotlin.svg"
},
{
"title": "Objective-C",
"url": "lang/objective-c.md",
"image": "assets/img/objective-c.svg"
},
{
"title": "Python",
"url": "lang/python.md",
"image": "assets/img/python.svg"
},
{
"title": "Rust",
"url": "lang/rust.md",
"image": "assets/img/rust.svg"
},
{
"title": "Swift",
"url": "lang/swift.md",
"image": "assets/img/swift.svg"
},
{
"title": "TypeScript",
"url": "lang/typescript.md",
"image": "assets/img/typescript.svg"
}
]
70 changes: 70 additions & 0 deletions assets/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
:root {
--md-primary-fg-color: #007BFF;
--md-primary-fg-color--light: #288EFA;
--md-primary-fg-color--dark: #005DC1;
}

/* region: Code Block Styles */

/* Code Block: good-code */
.highlight.good-code code, .highlight.good-code code *,
.highlight.good-code .linenos, .highlight.good-code .linenos * {
background-color: #f3fbf9 !important;
}

/* Title: good-code */
.highlight.good-code th, .highlight.good-code th *,
.highlight.good-code .filename, .highlight.good-code .filename * {
background-color: #2c7a7b !important;
color: #f0f3f4;
}

/* Code Block: bad-code */
.highlight.bad-code code, .highlight.bad-code code *,
.highlight.bad-code .linenos, .highlight.bad-code .linenos * {
background-color: #fcf3f6 !important;
}

/* Title: bad-code */
.highlight.bad-code th, .highlight.bad-code th *,
.highlight.bad-code .filename, .highlight.bad-code .filename * {
background-color: #a8323e !important;
color: #f9f9f9;
}

[data-md-color-scheme="slate"] {

/* Code Block: good-code */

.highlight.good-code code, .highlight.good-code code *,
.highlight.good-code .linenos, .highlight.good-code .linenos * {
background-color: #1a2a2a !important;
color: #e0e0e0;
}

/* Title: good-code */

.highlight.good-code th, .highlight.good-code th *,
.highlight.good-code .filename, .highlight.good-code .filename * {
background-color: #20635c !important;
color: #e0e0e0;
}

/* Code Block: bad-code */

.highlight.bad-code code, .highlight.bad-code code *,
.highlight.bad-code .linenos, .highlight.bad-code .linenos * {
background-color: #2a1a1f !important;
color: #d1d1d1;
}

/* Title: bad-code */

.highlight.bad-code th, .highlight.bad-code th *,
.highlight.bad-code .filename, .highlight.bad-code .filename * {
background-color: #78202a !important;
color: #d1d1d1;
}
}

/* endregion */
Loading

0 comments on commit f22aa1a

Please sign in to comment.