Skip to content

Commit

Permalink
Merge pull request #30 from hong19/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
hong19 committed Sep 21, 2015
2 parents 7d36e2e + f92a12d commit 18a9ee1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
4 changes: 2 additions & 2 deletions sections/about_us.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
if( !empty($zerif_aboutus_subtitle) ):


echo '<h6 class="white-text">';
echo '<h3 class="white-text">';


echo __($zerif_aboutus_subtitle,'zerif-lite');


echo '</h6>';
echo '</h3>';


endif;
Expand Down
8 changes: 3 additions & 5 deletions sections/donation.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,9 @@

if( !empty($zerif_donation_buttonlabel[ $btn_idx ]) ):

echo '<li><div href="' . $zerif_donation_buttonlink[ $btn_idx ] . '" class ="btn btn-lightblue btn-circle">';

echo $zerif_donation_buttonlabel[ $btn_idx ];

echo '</div></li>';
echo '<li><div><a href="' . $zerif_donation_buttonlink[ $btn_idx ] . '" target="_blank" class ="btn btn-burgundy btn-circle">';
echo $zerif_donation_buttonlabel[ $btn_idx ];
echo '</a></div></li>';


endif;
Expand Down
20 changes: 14 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4941,7 +4941,7 @@ body.custom-background {
/* DONATION */

.donation{
background: rgba(92, 110, 221, 0.8);
background: rgba(233, 102, 86, 0.8);
padding: 70px 0 70px 0;
}

Expand All @@ -4950,6 +4950,14 @@ body.custom-background {

}

.donation a{
color: white;
}

.donation a:visited{
color: white;
}

.navbar-inner {
text-align:center;
display: inline-block;
Expand All @@ -4975,14 +4983,14 @@ body.custom-background {
border-radius: 45px;
}

.btn-lightblue{
.btn-burgundy{
color: #FFF;
background-color: #3562E0;
border-color: #5782A6;
background-color: #D14431;
border-color: #D97668;
transition: all 0.3s ease-in-out;
}

.btn-lightblue:hover {
.btn-burgundy:hover {
color: #FFF;
background: #0C33A1;
background: #A72817;
}

0 comments on commit 18a9ee1

Please sign in to comment.