Created
January 27, 2016 03:36
-
-
Save ryanseddon/84ad69d8f0cdd0e93c72 to your computer and use it in GitHub Desktop.
glittering.blue
This file contains hidden or 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
/* 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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Before:

After:
