Last active
April 24, 2017 14:27
-
-
Save ericmustin/995ff3a83f6321d8929c7dddf73905a4 to your computer and use it in GitHub Desktop.
sundress_change_04212017
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
| &.the-reversible-sundress { | |
| // pool cobalt | |
| &.pool { | |
| overflow: hidden; | |
| background-color: #85d0d5; | |
| &:before { | |
| content: ''; | |
| width: 50%; | |
| height: 100%; | |
| position: relative; | |
| left: 50%; | |
| display: block; | |
| background-color: #265596; | |
| } | |
| } | |
| // navy raspberry | |
| &.navy { | |
| overflow: hidden; | |
| background-color: #303653; | |
| &:before { | |
| content: ''; | |
| width: 50%; | |
| height: 100%; | |
| position: relative; | |
| left: 50%; | |
| display: block; | |
| background-color: #d73764; | |
| } | |
| } | |
| } | |
| //changes | |
| //1. background-color on line 15 was changed from hex #f6e541 to #265596 | |
| //2. added lines 19-34 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment