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

Added footer styles #8

Merged
merged 3 commits into from
Oct 11, 2021
Merged
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
13 changes: 7 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,17 @@ <h2>Developed by guugle and government of bindia</h2>
<img src="assets/memes/20.jpeg" alt="" srcset="">
</div>
<!-- div for about -->
<div>
<h2>About us</h2>
<div class="about-container">
<h2 class="heading">About us</h2>
<h3>If you feel to contribute to the site visit this repository, we are open to all suggestions and content</h3>
<h4>https://github.com/apoorvpandey0/30daysofscam-html</h4>
<a class="github-link" href="https://github.com/apoorvpandey0/30daysofscam-html">30daysofscam-html</a>
<hr>
<h3>Also consider supporting us by Buying us a coffee at:</h3>
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="ankurg132" data-color="#FFDD00" data-emoji="" data-font="Cookie" data-text="Buy me a coffee" data-outline-color="#000000" data-font-color="#000000" data-coffee-color="#ffffff" ></script>
<h3>All the fund raised will be donated to guugle for improving their servers. Stay tuned for more info.</h3>
<hr>
<h2>Memes are created by our beloved GDSC community, mostly GDSC JGEC thanks :)</h2>
<div>
<h3>All the fund raised will be donated to guugle for improving their servers. Stay tuned for more info.</h3>
<h3>Memes are created by our beloved GDSC community, mostly GDSC JGEC thanks :)</h3>
</div>
</div>


Expand Down
59 changes: 47 additions & 12 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,57 @@
.images {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}

.images > img {
width: 100%;
margin: 10px 0;
width: 100%;
margin: 10px 0;
}

@media (min-width: 600px) {
.images > img {
width: 47%;
}
.images > img {
width: 47%;
}
}

@media (min-width: 1025px) {
.images > img {
width: 30%;
}
}
.images > img {
width: 30%;
}
}

footer div {
display: flex;
align-items: center;
justify-content: space-around;
padding: 75px 25px;
background-color: rgb(252, 221, 182);
}

body {
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
margin: 0;
}

.about-container {
display: flex;
flex-direction: column;
padding: 2% 20%;
background-color: whitesmoke;
}

.heading {
font-size: 50px;
}

.about-container h3 {
font-size: 25px;
font-weight: 450;
}

.github-link {
text-decoration: none;
font-weight: bold;
font-size: 20px;
}