-
-
Save remy/55411138d3a7ee344c837c60541c318f to your computer and use it in GitHub Desktop.
The styles for ./pages/index.js
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 jsx>{` | |
ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
.title { | |
font-weight: bold; | |
margin-bottom: 0; | |
} | |
a { | |
color: black; | |
text-decoration: none; | |
} | |
a:hover { | |
text-decoration: underline; | |
} | |
.info { | |
margin-top: 0; | |
padding-bottom: 20px; | |
} | |
.info span:after { | |
content: '•'; | |
margin: 0 10px; | |
} | |
.info span:last-child:after { | |
display: none; | |
} | |
.info .speaker { | |
display: ${process.env.HIDE_SPEAKERS ? 'none' : 'auto'}; | |
} | |
`}</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What's
display: auto
? Third glass of water? :-p