Skip to content

Commit ec47d82

Browse files
authored
Merge pull request #148 from mciwing/rebranding
Code Campus - Rebranding
2 parents dc0a718 + 7d151f4 commit ec47d82

File tree

14 files changed

+91
-260
lines changed

14 files changed

+91
-260
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This site offers a variety of courses focused on Python, including:
1616
- Computer Vision
1717
- MicroPython
1818

19-
📚 Visit the site [here](https://mciwing.github.io/)!
19+
📚 Visit the site [here](https://code-campus.at/)!
2020

2121
## Docker
2222

docs/assets/favicon.PNG

1.65 MB
Loading

docs/assets/free-open-source.gif

19.3 KB
Loading

docs/assets/icon.PNG

1.53 MB
Loading

docs/assets/logo.png

765 KB
Loading

docs/assets/logo.svg

Lines changed: 0 additions & 200 deletions
This file was deleted.

docs/blog/posts/uv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ an idea of how `uv` can simplify your Python development workflow. In
8787
subsequent posts, I will dive deeper into specific features and use cases of
8888
`uv`. Until then, you can take a look at a couple of projects that use `uv`:
8989

90-
- This site you're reading right now is built with `uv` - [code](https://github.com/mciwing/mciwing.github.io).
90+
- This site you're reading right now is built with `uv` - [code](https://github.com/mciwing/code-campus).
9191
- Two Python packages I develop, [first](https://github.com/JakobKlotz/md-snakeoil) and
9292
[second](https://github.com/JakobKlotz/tiler-api)
9393
- An app to assess rainfall-triggered landslide risks - [here](https://github.com/JakobKlotz/lhasa-app/tree/main/backend).

docs/python-extensive/data/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ information of this site's project (repository):
260260

261261
```python hl_lines="7"
262262
owner = "mciwing"
263-
repo = "mciwing.github.io"
263+
repo = "code-campus"
264264

265265
url = f"https://api.github.com/repos/{owner}/{repo}/contributors"
266266

docs/stylesheets/colors.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* custom primary and accent colors */
2+
:root > * {
3+
--md-primary-fg-color: #009485;
4+
--md-accent-fg-color: #FFB482;
5+
6+
}

mkdocs.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
site_name: MCI | WING
2-
repo_url: https://github.com/mciwing/mciwing.github.io
3-
site_url: https://mciwing.github.io
1+
site_name: Code Campus
2+
repo_url: https://github.com/mciwing/code-campus
3+
site_url: https://code-campus.at
44
theme:
55
name: material
66
custom_dir: overrides
7-
logo: assets/logo.png
8-
favicon: assets/logo.png
7+
logo: assets/favicon.png
8+
favicon: assets/favicon.png
99
palette:
1010
- scheme: slate
11-
primary: teal
12-
accent: pink
11+
primary: custom # teal
12+
accent: custom # peachy peach
1313
toggle:
1414
icon: material/weather-night
1515
name: Switch to dark mode
1616

1717
- scheme: default
18-
primary: teal
19-
accent: pink
18+
primary: custom
19+
accent: custom
2020
toggle:
2121
icon: material/weather-sunny
2222
name: Switch to light mode
@@ -283,4 +283,5 @@ extra_javascript:
283283
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
284284

285285
extra_css:
286-
- stylesheets/extra.css
286+
- stylesheets/extra.css
287+
- stylesheets/colors.css

0 commit comments

Comments
 (0)