This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.links-container { | |
display: none; | |
} | |
@media only screen and (max-width: 1500px) { | |
.links-container { | |
display: block; | |
} | |
.quick-link { | |
display: block; | |
border: solid 1px black; | |
padding: 20px; | |
text-align: center; | |
margin-bottom: 15px;} | |
.quick-link:hover { | |
background-color: rgba(33,35,38,1); | |
color: white; | |
transition: all ease 1s; | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment