Created
April 18, 2017 22:57
-
-
Save DevinWalker/6e641ec498a481f50ff7d7649b709657 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
/* Basic form style cleanup */ | |
ul#give-donation-level-radio-list { | |
list-style: none; | |
padding: 0; | |
} | |
ul#give-donation-level-radio-list input { | |
margin: 0 5px 0 3px; | |
} | |
/* Progress bar */ | |
.give-goal-progress { | |
margin-bottom: 20px; | |
clear: both; | |
} | |
.give-goal-progress .income { | |
font-size: 46px; | |
line-height: 48px; | |
letter-spacing: -1px; | |
color: #333; | |
} | |
.give-goal-progress .raised { | |
margin-bottom: 15px; | |
} | |
.give-progress-bar { | |
height: 20px; | |
position: relative; | |
background: #EEE; | |
border-radius: 25px; | |
overflow: hidden; | |
} | |
.give-progress-bar > span { | |
display: block; | |
height: 100%; | |
border-top-right-radius: 8px; | |
border-bottom-right-radius: 8px; | |
border-top-left-radius: 20px; | |
border-bottom-left-radius: 20px; | |
background-color: #2bc253; | |
position: relative; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment