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

Adjusting Font size of the elements Issue #52 #67

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
12 changes: 9 additions & 3 deletions home.html
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,15 @@ <h2>Mastering Cosmic Gameplay</h2>
<h2>
PACKABUNCHAS | Chrome Gaming
</h2>
<h3> <!-- The href tag can be updated later with the desired links -->
<a href="#footer">PRIVACY NOTICE</a> |<a href="#footer">TERMS OF SERVICE</a> |<a href="#footer">COOKIES INFO</a> |<a href="#footer">CHROME GAMING</a>
</h2>
<div class="foot-font">
<div><a href="#footer">PRIVACY NOTICE</a></div>
<div style="color: white;">|</div>
<div><a href="#footer">TERMS OF SERVICE</a></div>
<div style="color: white;">|</div>
<div><a href="#footer">COOKIES INFO</a></div>
<div style="color: white;">|</div>
<div><a href="#footer">CHROME GAMING</a></div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
Expand Down
23 changes: 13 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -256,16 +256,6 @@ footer h2{
letter-spacing: 5px;
padding-top: 30px;
}
footer h3{
text-align: center;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
letter-spacing: 5px;
padding-top: 50px;
}
footer a:hover{
color: #94dec3;
}
.line{
display: flex;
justify-content: center;
Expand Down Expand Up @@ -423,3 +413,16 @@ footer a:hover{
}

}
.foot-font
{
display: flex;
justify-content: space-around;
align-items: center;
width: 50%;
margin-top: 5%;
margin-left: 25%;
}
.foot-font a:hover
{
color: #94dec3;
}