Last active
September 26, 2015 01:38
-
-
Save zgulde/0de88b58c5032b73d7e1 to your computer and use it in GitHub Desktop.
This file contains 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
h1{ | |
color: purple; | |
text-decoration: underline; | |
} | |
.box{ | |
height: 50px; | |
width: 150px; | |
color: white; | |
border: 1px solid black; | |
margin-top: 5px; | |
margin-bottom: 5px; | |
padding: 10px; | |
font-weight: bold; | |
} | |
.red { | |
margin-left: 0px; | |
background-color: #D84231; | |
} | |
.orange { | |
margin-left: 30px; | |
background-color: #E8AC33; | |
} | |
.yellow { | |
margin-left: 60px; | |
background-color: #FBF733; | |
} | |
.green { | |
margin-left: 90px; | |
background-color: #578C05; | |
} | |
.blue { | |
margin-left: 120px; | |
background-color: #234AFB; | |
} | |
.purple { | |
margin-left: 150px; | |
background-color: #DF8BF0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment