Skip to content

Commit

Permalink
update css
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaben committed Jun 3, 2024
1 parent e132961 commit 1b51c04
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
8 changes: 4 additions & 4 deletions material-overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ '/assets/stylesheets/home.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css' | url }}">
{% endblock %}

{% block content %}
Expand All @@ -23,21 +23,21 @@ <h1>Pepe Documentation</h1>
<img src="./assets/images/pepe-learn.jpeg" alt="Feature 1">
<h2>Learn the Basics</h2>
<p> In this section, you'll access a treasure trove of foundational knowledge and introductory content carefully curated to help newcomers grasp the essential concepts, core principles, and fundamental terminology that serve as the building blocks of your development journey.</p>
<a href="/learn" class="btn">Learn More</a>
<a href="learn" class="btn">Learn More</a>
</div>

<div class="feature">
<img src="./assets/images/pepe-build.jpeg" alt="Feature 2">
<h2>Get Coding</h2>
<p>Discover comprehensive guides on creating your own projects, understanding API endpoints, and harnessing the power of development libraries and APIs, equipping you with the knowledge and tools to bring your innovative ideas to life.</p>
<a href="/builders" class="btn">Learn More</a>
<a href="builders" class="btn">Learn More</a>
</div>

<div class="feature">
<img src="./assets/images/pepe-tutorials.jpeg" alt="Feature 3">
<h2>Browse Tutorials</h2>
<p>Explore a vast collection of step-by-step tutorials covering a wide range of topics and technologies, designed to guide both beginners and experienced developers through various tasks and projects, ensuring you acquire the knowledge and expertise you need.</p>
<a href="/tutorials" class="btn">Learn More</a>
<a href="tutorials" class="btn">Learn More</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion material-overrides/main-index-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ '/assets/stylesheets/index-page.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/index-page.css' | url }}">
{% endblock %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion material-overrides/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ '/assets/stylesheets/pepe.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/pepe.css' | url }}">
{% endblock %}

{% block fonts %}
Expand Down
2 changes: 1 addition & 1 deletion material-overrides/subsection-index-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{% block styles %}
{{ super() }}
<link rel="stylesheet" href="{{ '/assets/stylesheets/index-page.css' | url }}">
<link rel="stylesheet" href="{{ 'assets/stylesheets/index-page.css' | url }}">
{% endblock %}

{% block content %}
Expand Down
3 changes: 0 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
# Used for additional CSS files and custom fonts. If you're using a publicly available font, this is not necessary
'extra_css':
- 'assets/stylesheets/extra.css'
- 'assets/stylesheets/home.css'
- 'assets/stylesheets/index-page.css'
- 'assets/stylesheets/pepe.css'
- 'assets/stylesheets/terminal.css'
'theme':
'name': 'material'
Expand Down

0 comments on commit 1b51c04

Please sign in to comment.