Skip to content

Instantly share code, notes, and snippets.

@sjns19
Created November 18, 2021 13:05
Show Gist options
  • Save sjns19/a829ea285fab18cd115b556db6c4639e to your computer and use it in GitHub Desktop.
Save sjns19/a829ea285fab18cd115b556db6c4639e to your computer and use it in GitHub Desktop.
This gist is used for a medium article
* {
padding: 0;
margin: 0;
box-sizing: border-box;
html {
background-color: #000;
color: #fff;
font-family: sans-serif;
line-height: 1.4;
}
.container {
margin: 0 auto;
max-width: 900px;
}
.navbar {
padding: 0.75rem;
}
.nav {
display: flex;
align-items: center;
list-style-type: none;
}
.nav-item {
margin: 0.5rem 1rem;
}
.nav-link {
color: #ccc;
text-decoration: none;
}
.pull-right {
margin-left: auto;
}
.button {
background-color: #fff;
color: #000;
padding: 0.5rem 1rem;
border: none;
outline: none;
cursor: pointer;
border-radius: 20px;
}
.card {
margin: 1rem;
padding: 0.5rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment