diff options
| author | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-09-13 20:22:52 -0400 |
|---|---|---|
| committer | anoduck <11767-anoduck@users.noreply.gitgud.io> | 2024-09-13 20:23:11 -0400 |
| commit | 9744378a9b9071872182edb4f151f915ecfa8643 (patch) | |
| tree | a8c9b8de8e223f6edbecc91b899c2f2a196c712e /assets | |
| parent | 5e0f93a81672bacbfd583cfe8cc40f24282af031 (diff) | |
added tags, working out themeing
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/img/logo-front.png | bin | 0 -> 38282 bytes | |||
| -rw-r--r-- | assets/img/logo-lg.png | bin | 0 -> 723035 bytes | |||
| -rw-r--r-- | assets/img/logo.ico | bin | 0 -> 6406 bytes | |||
| -rw-r--r-- | assets/scss/custom.scss | 9 | ||||
| -rw-r--r-- | assets/scss/theme/theme.scss | 4 |
5 files changed, 13 insertions, 0 deletions
diff --git a/assets/img/logo-front.png b/assets/img/logo-front.png Binary files differnew file mode 100644 index 0000000..5feb8a6 --- /dev/null +++ b/assets/img/logo-front.png diff --git a/assets/img/logo-lg.png b/assets/img/logo-lg.png Binary files differnew file mode 100644 index 0000000..1e0e40d --- /dev/null +++ b/assets/img/logo-lg.png diff --git a/assets/img/logo.ico b/assets/img/logo.ico Binary files differnew file mode 100644 index 0000000..d736cdf --- /dev/null +++ b/assets/img/logo.ico diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss new file mode 100644 index 0000000..37ae8de --- /dev/null +++ b/assets/scss/custom.scss @@ -0,0 +1,9 @@ +// Custom.scss +// Option A: Include all of Bootstrap + +// Include any default variable overrides here (though functions won't be available) + +@import "../node_modules/bootstrap/scss/bootstrap"; + +// Then add additional custom code here + diff --git a/assets/scss/theme/theme.scss b/assets/scss/theme/theme.scss new file mode 100644 index 0000000..7e70cdc --- /dev/null +++ b/assets/scss/theme/theme.scss @@ -0,0 +1,4 @@ +.gradient-featured { + background: $white; + background: linear-gradient(135deg, $white 0%, tint-color($primary, 80%) 100%); +}
\ No newline at end of file |
