Created
December 26, 2015 21:34
-
-
Save juddlyon/c36021397b77424797bc to your computer and use it in GitHub Desktop.
GA Programming for Non-programmers CSS File
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
body { | |
background-color: #FF0080; | |
} | |
.main { | |
background-color: white; | |
width: 50%; | |
margin: 0 auto 50px auto; | |
padding: 30px; | |
border: 5px solid orange; | |
} | |
#cat-pic { | |
float: right; | |
margin-left: 20px; | |
} | |
.cat { | |
margin: 0 auto 30px; | |
width: 500px; | |
} | |
a { | |
text-transform: uppercase; | |
color: purple; | |
} | |
a:hover { | |
color: orange; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment