Skip to content

Instantly share code, notes, and snippets.

@ryanseddon
Created January 27, 2016 03:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanseddon/84ad69d8f0cdd0e93c72 to your computer and use it in GitHub Desktop.
Save ryanseddon/84ad69d8f0cdd0e93c72 to your computer and use it in GitHub Desktop.
glittering.blue
/* What? */
html, body, section {
height: 100%;
}
body {
background-color: black;
font-family: sans-serif;
color: #aaa;
text-align: center;
line-height: 1.25em;
margin: 0;
}
#about {
position: fixed;
top: 0px;
left: 0px;
color: rgb(128, 128, 128);
font-weight: bold;
background-color: rgba(0, 0, 0, 0.5);
border-bottom-right-radius: 5px;
margin: none;
}
#about p {
text-align: left;
padding: 5px;
margin: 5px;
}
a, a:hover, a:active, a:visited {
text-decoration: none;
color: inherit;
border-bottom: 1px solid #444;
}
section {
display: flex;
}
#earth {
flex: 1;
}
#qna {
padding-bottom: 5em;
}
h1 {
font-size: 2em;
padding: 0px;
margin-bottom: 1em;
text-align: center;
}
h2 {
font-size: 1.5em;
padding: 0px;
margin-bottom: 1em;
}
@ryanseddon
Copy link
Author

Before:
screen shot 2016-01-27 at 16 13 47

After:
screen shot 2016-01-27 at 16 14 07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment