Skip to content

Instantly share code, notes, and snippets.

@whichbuffer
Created October 19, 2018 06:57
Show Gist options
  • Save whichbuffer/29ff42dbbbc4be2a3c36b183ecfe0c59 to your computer and use it in GitHub Desktop.
Save whichbuffer/29ff42dbbbc4be2a3c36b183ecfe0c59 to your computer and use it in GitHub Desktop.
Basic CSS
<style>
body {
background-color: black;
font-family: monospace;
}
.pink-text{
color:pink;
}
.center {
margin: auto;
width: 50%;
border: 3px solid pink;
padding: 10px;
}
</style>
<div class=center>
<h1 class=pink-text>I Love Pink LOL</h1>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment