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

improved footer #1163

Closed
wants to merge 2 commits 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
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

152 changes: 83 additions & 69 deletions page/index.html
Original file line number Diff line number Diff line change
@@ -1,92 +1,106 @@
<!DOCTYPE html>
<html lang="en">

<head>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-20CBRBVW37"></script>
<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());

gtag('config', 'G-20CBRBVW37');
gtag('config', 'G-20CBRBVW37');
</script>

<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<meta name="description"
content="This website lists a maximum of conference dates and CFP link to help conference organizers, speakers, sponsors and attendees." />
<meta
name="description"
content="This website lists a maximum of conference dates and CFP link to help conference organizers, speakers, sponsors and attendees."
/>
<meta name="author" content="Aurélie Vache" value="Aurélie Vache" />
<meta name="robots" content="index, follow" value="index, follow" />
<meta name="keywords" content="conferences, talks, events, speaker, sponsor, organizer, attendee" />
<meta
name="keywords"
content="conferences, talks, events, speaker, sponsor, organizer, attendee"
/>

<title>Developer Conferences Agenda</title>
</head>
</head>

<body>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<footer>
</body>
<footer>
<div class="content">
<p>
Created by
<a
href="https://twitter.com/aurelievache"
target="_blank"
class="footer">
Aurélie Vache
</a>
& maintained by the
<a
href="https://github.com/scraly/developers-conferences-agenda/graphs/contributors"
target="_blank"
class="footer">
community
</a>
with ❤️
</p>
<p>
Contribute now: create a
<a
href="https://github.com/scraly/developers-conferences-agenda/pulls"
target="_blank"
class="footer">
Pull Request
</a>
or an
<a
href="https://github.com/scraly/developers-conferences-agenda/issues"
target="_blank"
class="footer">
issue
</a> to add an event.
</p>
<p>
Become a <a href="https://github.com/sponsors/scraly" target="_blank" class="footer">Sponsor</a> ❤️
</p>
<p>
Links:
<p>
Created by
<a href="https://twitter.com/aurelievache" target="_blank" class="footer-link">
Aurélie Vache
</a>
& maintained by the
<a
href="https://github.com/scraly/developers-conferences-agenda/graphs/contributors"
target="_blank"
class="footer-link"
>
community
</a>
with ❤️
</p>
<p>
Contribute now: create a
<a
href="https://github.com/scraly/developers-conferences-agenda/pulls"
target="_blank"
class="footer-link"
>
Pull Request
</a>
or an
<a
href="https://github.com/scraly/developers-conferences-agenda/issues"
target="_blank"
class="footer-link"
>
issue
</a>
to add an event.
</p>
<p>
Become a
<a href="https://github.com/sponsors/scraly" target="_blank" class="footer-link">Sponsor</a>
❤️
</p>
<div class="footer-links">
<p>Links:</p>
<ul>
<li>
<a href="https://developers.events/all-events.json" target="_blank" class="footer">Full events list</a>
</li>
<li>
<a href="https://developers.events/all-cfps.json" target="_blank" class="footer">Full CFPs list</a>
</li>
<li>
<a href="https://developers.events/feed-events.xml" target="_blank" class="footer">ATOM feed</a>
</li>
<li>
<a href="https://developers.events/feed-events.json" target="_blank" class="footer">JSON feed</a>
</li>
<li>
<a href="https://developers.events/all-events.json" target="_blank" class="footer-link"
>Full events list</a
>
</li>
<li>
<a href="https://developers.events/all-cfps.json" target="_blank" class="footer-link"
>Full CFPs list</a
>
</li>
<li>
<a href="https://developers.events/feed-events.xml" target="_blank" class="footer-link"
>ATOM feed</a
>
</li>
<li>
<a href="https://developers.events/feed-events.json" target="_blank" class="footer-link"
>JSON feed</a
>
</li>
</ul>
</p>
</div>
</div>
</footer>

</html>
</footer>
</html>
67 changes: 57 additions & 10 deletions page/src/styles/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body * {
cursor: pointer;
}

.downloadButton:hover{
.downloadButton:hover {
cursor: pointer;
transition: transform 0.5s;
transform: scale(1.07);
Expand Down Expand Up @@ -75,20 +75,67 @@ body > footer {
background-color: #333;
}

body > footer {
background: #222;
color: #e6e6e6;
padding: 2rem 0;
display: grid;
grid-template-columns: 1fr minmax(300px, 90vw) 1fr;
font-size: small;
}

body > footer > .content {
grid-column: 2;
text-align: center;
}

.footer {
color: inherit;
.footer-link {
color: #ddd;
text-decoration: none;
border-bottom: 1px solid transparent;
transition: all 0.3s ease;
}

input, select {
font-family: inherit;
border-radius: 3px;
border: 0;
.footer-link:hover {
color: #fff;
border-bottom: 1px solid #fff;
}

.footer-links {
margin-top: 1rem;
}

.footer-links ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-links ul li {
margin: 0.5rem 0;
}

.footer-links ul li a {
color: #bbb;

transition: color 0.3s ease;
}

input[type=text] {
border: solid 1px #aaa;
}
.footer-links ul li a:hover {
color: #fff;
}

.footer-links p {
font-weight: bold;
margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
body > footer {
padding: 1rem;
}

body > footer > .content {
grid-column: 1 / -1;
}
}