Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Colored Icons #767

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -257,17 +257,20 @@ <h3 class="instructions-heading" style="text-decoration: underline">
<div class="social-icons" style="display: flex; justify-content: flex-end;">
<a href="https://github.com/ChromeGaming" style="font-size: 12px;">Chrome Gaming</a>

<a href="https://github.com/ChromeGaming/Dot-Box" target="_blank" style="font-size: 16px;">
<a href="https://github.com/ChromeGaming/Dot-Box" class="social" target="_blank" style="font-size: 16px;">
<i class="fab fa-github"></i>
</a>
<a href="https://discord.gg/2HTCFrSvPB" target="_blank" style="font-size: 16px;">
<a href="https://discord.gg/2HTCFrSvPB" class="social" target="_blank" style="font-size: 16px;">
<i class="fab fa-discord"></i>
</a>
</div>
</div>

</div>
</div>



<!-- <div class="flex">
<div class="board"></div>
<div class="score">
Expand All @@ -285,6 +288,19 @@ <h3 class="instructions-heading" style="text-decoration: underline">
</div>
</div> -->

<style>
.footer .social-icons .social:hover {
background-color: white;
}

.footer .social-icons .social:hover .fa-github{
color: #2b3137;
}
.footer .social-icons .social:hover .fa-discord{
color: #7289da;
}
</style>

<script
src="//code.tidio.co/fdylvmddtyb7vzsk5frdt3ncrk6cwobs.js"
async
Expand Down
6 changes: 3 additions & 3 deletions pages/FAQs.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Tiny5&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<!-- <link rel="stylesheet" href="../styles/mainstyle.css" /> -->
<link rel="stylesheet" href="../styles/mainstyle.css" />
<link rel="stylesheet" href="../styles/global.css" />
<link rel="stylesheet" href="../styles/FAQs.css" />

Expand Down Expand Up @@ -195,8 +195,8 @@ <h1 id="faq-head">
<a href="https://github.com/ChromeGaming">Chrome Gaming</a>
</p>
<div class="social-icons">
<a href="https://github.com/ChromeGaming/Dot-Box" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://github.com/ChromeGaming/Dot-Box" class="social" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" class="social" target="_blank"><i class="fab fa-discord"></i></a>
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ <h3 class="card-title">How to Play</h3>
</p>
<script src="//code.tidio.co/fdylvmddtyb7vzsk5frdt3ncrk6cwobs.js" async></script>
<div class="social-icons">
<a href="https://github.com/ChromeGaming/Dot-Box" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://github.com/ChromeGaming/Dot-Box" class="social" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" class="social" target="_blank"><i class="fab fa-discord"></i></a>
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions pages/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
</div>
<p>Created with ❀️ by <a href="https://github.com/ChromeGaming">Chrome Gaming</a></p>
<div class="social-icons">
<a href="https://github.com/ChromeGaming/Dot-Box" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" target="_blank"><i class="fab fa-discord"></i></a>
<a href="https://github.com/ChromeGaming/Dot-Box" class="social" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://discord.gg/2HTCFrSvPB" class="social" target="_blank"><i class="fab fa-discord"></i></a>
</div>
</div>

Expand Down
8 changes: 8 additions & 0 deletions styles/mainstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -971,3 +971,11 @@ button a {
.hidden {
display: none;
}


.author .social-icons .social:hover .fa-github{
color: #2b3137;
}
.author .social-icons .social:hover .fa-discord{
color: #7289da;
}