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

Implement new design and Web-API #58

Merged
merged 8 commits into from
Mar 13, 2018
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
8 changes: 4 additions & 4 deletions _includes/blog_footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<div class="image-holder">
<img src="{{ site.baseurl }}/img/logo.svg" class="footer-logo img-circle border-white" />
</div>
<div class="footer-copyright text-center">
<p>
<span class="copyright">Copyright &copy; Team NewPipe. Please refer to our <a href="{{ site.baseurl }}/LICENSE.html" target="_blank">licensing page</a> for more information.</span>
</p>
<div class="footer-links text-center">
<p><a href="{{ site.baseurl }}/">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/blog/">Blog</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/press/">Press</a></p>
<p><a href="{{ site.baseurl }}/donate">Donate</a></p>
<p class="copyright"><a href="{{ site.baseurl }}/LICENSE.html" target="_blank">Copyright &copy; Team NewPipe</a></p>
</div>
</div>
</footer> <!-- footer -->
8 changes: 4 additions & 4 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<div class="image-holder">
<img src="{{ site.baseurl }}/img/logo.svg" class="footer-logo img-circle border-white" />
</div>
<div class="footer-copyright text-center">
<p>
<span class="copyright">Copyright &copy; Team NewPipe. Please refer to our <a href="{{ site.baseurl }}/LICENSE.html" target="_blank">licensing page</a> for more information.</span>
</p>
<div class="footer-links text-center">
<p><a href="{{ site.baseurl }}/">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/blog/">Blog</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/press/">Press</a></p>
<p><a href="{{ site.baseurl }}/donate">Donate</a></p>
<p class="copyright"><a href="{{ site.baseurl }}/LICENSE.html" target="_blank">Copyright &copy; Team NewPipe</a></p>
</div>
</div>
</div>
Expand Down
8 changes: 4 additions & 4 deletions _includes/press_footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<div class="image-holder">
<img src="{{ site.baseurl }}/img/logo.svg" class="footer-logo img-circle border-white" />
</div>
<div class="footer-copyright text-center">
<p>
<span class="copyright">Copyright &copy; Team NewPipe. Please refer to our <a href="{{ site.baseurl }}/LICENSE.html" target="_blank">licensing page</a> for more information.</span>
</p>
<div class="footer-links text-center">
<p><a href="{{ site.baseurl }}/">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/blog/">Blog</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="{{ site.baseurl }}/press/">Press</a></p>
<p><a href="{{ site.baseurl }}/donate">Donate</a></p>
<p class="copyright"><a href="{{ site.baseurl }}/LICENSE.html" target="_blank">Copyright &copy; Team NewPipe</a></p>
</div>
</div>
</div>
Expand Down
54 changes: 3 additions & 51 deletions css/blog.css
Original file line number Diff line number Diff line change
Expand Up @@ -344,37 +344,17 @@ strong.extra {
position: relative;
bottom: 0;
}
.footer-copyright {
margin: 0 0 30px 0;
.footer-links {
margin: 0 0 45px 0;
}
.footer, .footer-links a:hover, .footer .copyright, .footer .copyright a, .footer .copyright a:hover {
.footer, .footer a, .footer a:hover .footer-links a:hover, .footer .copyright, .footer .copyright a, .footer .copyright a:hover {
color: white;
text-decoration: none;
position: relative;
}
.footer .copyright a {
padding-bottom: 1px;
font-weight: bold;
}
.footer .copyright a:after {
content: '';
bottom: 0;
left: 50%;
position: absolute;
height: 1px;
width: 0;
background: white;
transition: width 0.25s, left 0.25s;
}
.footer .copyright:hover a:after {
content: '';
bottom: 0;
left: 0;
position: absolute;
height: 1px;
width: 100%;

}
.footer .image-holder {
text-align: center;
position: relative;
Expand All @@ -401,34 +381,6 @@ strong.extra {
padding-bottom: 3px;
}
}
@media (min-width: 767px){
.footer .copyright a {
font-weight: normal;
}
.footer .copyright a:after {
content: '';
bottom: 0;
left: 50%;
position: absolute;
height: 1px;
width: 0;
background: white;
-webkit-transition: width 0.25s, left 0.25s;
-moz-transition: width 0.25s, left 0.25s;
-o-transition: width 0.25s, left 0.25s;
-ms-transition: width 0.25s, left 0.25s;
transition: width 0.25s, left 0.25s;
}
.footer .copyright:hover a:after {
content: '';
bottom: 0;
left: 0;
position: absolute;
height: 1px;
width: 100%;

}
}

.image-puffer {
display: none;
Expand Down
Loading