Skip to content

Commit

Permalink
Gardenupdates (#50)
Browse files Browse the repository at this point in the history
* Update ❓ Github account.md

- force correct numbers
- this fixes #47

* Update footer.html

- update footer year

* move `.logocolor` class

- move `.logocolor` class to `_style.scss` and make sure it stays the same when hovered over.

* Update nav.html

- make top left logo colored
- this fixes #48
  • Loading branch information
omarcostahamido authored Jan 8, 2024
1 parent 1c3fb5b commit f89c880
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 16 deletions.
10 changes: 5 additions & 5 deletions _content/faqs/❓ Github account.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ Here is how to create a Github account for free.

![Capturar](https://github.com/Quantumland-art/community/assets/18335360/ab71b8e1-12aa-4214-8940-4d19f8989bbb)

1. On GitHub.com click `Sign up` button on top right corner (or navigate directly to https://github.com/signup)
1. On GitHub.com click `Sign up` button on top right corner (or navigate directly to https://github.com/signup)

![Capturar03](https://github.com/Quantumland-art/community/assets/18335360/d81b768c-5ee6-4cbb-8dd4-c39a6aebc925)

2. Enter your email, create a password and username, type `y` or `n` for product update, and solve the captcha
2. Enter your email, create a password and username, type `y` or `n` for product update, and solve the captcha

![Capturar05](https://github.com/Quantumland-art/community/assets/18335360/da272d15-3bc7-43be-9a97-c7c4e6891c99)

3. A verification code will be sent to your email. Copy it on this next screen.
3. A verification code will be sent to your email. Copy it on this next screen.

![Capturar07](https://github.com/Quantumland-art/community/assets/18335360/6835ec73-c18d-4cad-a47d-ae2306cd670e)

4. Make your choices on the next couple of personalization questions OR simply skip them by clicking the `Skip personalization` link at the bottom
4. Make your choices on the next couple of personalization questions OR simply skip them by clicking the `Skip personalization` link at the bottom

5. Congrats 🎉 You now have a Github account and will be able to start interacting on the Forum.
5. Congrats 🎉 You now have a Github account and will be able to start interacting on the Forum.
2 changes: 1 addition & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Copyright © 2023 <a class="internal-link" href="{{ site.baseurl }}/about" style="color: #818181;">○—●—◩</a>
Copyright © 2023-2024 <a class="internal-link" href="{{ site.baseurl }}/about" style="color: #818181;">○—●—◩</a>
2 changes: 1 addition & 1 deletion _includes/nav.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div>
<a class="internal-link" href="{{ site.baseurl }}/"><b>{{ site.title }}</b></a>
<a class="internal-link logocolor" href="{{ site.baseurl }}/">{{ site.title }}</a>
</div>
9 changes: 0 additions & 9 deletions _layouts/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@
---

<article>
<style>
.logocolor {
font-weight:700;
background: -webkit-linear-gradient(30deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
<div>
<h1>{{ page.title }}</h1>
<time datetime="{{ page.last_modified_at | date_to_xmlschema }}">{% if page.type != 'pages' %}
Expand Down
15 changes: 15 additions & 0 deletions _sass/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,18 @@ code {
color: #ccc;
cursor: help;
}

.logocolor {
font-weight:700;
background: -webkit-linear-gradient(30deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
&:hover {
color: black !important;
background: -webkit-linear-gradient(30deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 50%, rgba(252,176,69,1) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
}

0 comments on commit f89c880

Please sign in to comment.