Skip to content
This repository has been archived by the owner on Jul 26, 2019. It is now read-only.

Commit

Permalink
Themed the readmore link for nodes
Browse files Browse the repository at this point in the history
references #80
  • Loading branch information
sumeetpareek committed Jan 15, 2014
1 parent ccf89e1 commit a4d8676
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
17 changes: 17 additions & 0 deletions sites/all/themes/aap_theme/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1448,6 +1448,23 @@ div.home-box-bottom li.last img {
color: #999;
}

.node-readmore {
background: #F28300;
padding: 0.3em 1em;
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
-ms-border-radius: 0.3em;
-o-border-radius: 0.3em;
border-radius: 0.3em;
}
.node-readmore a {
color: white !important;
text-shadow: 1px 1px 1b1c28;
}
.node-readmore:hover {
background: #fcac33;
}

.view-id-home_page_content {
position: relative;
}
Expand Down
14 changes: 13 additions & 1 deletion sites/all/themes/aap_theme/sass/_components.scss
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ form .form-submit {
background: $button-color-hover;
}
}

}

.header-donate-link {
Expand Down Expand Up @@ -333,4 +332,17 @@ div.home-box-bottom {
float: right;
padding: 1em 0em;
color: #999;
}

.node-readmore {
background: #F28300;
padding: 0.3em 1em;
@include border-radius(0.3em);
a {
color: white !important;
text-shadow:1px 1px 1b1c28;
}
&:hover {
background: $button-color-hover;
}
}

0 comments on commit a4d8676

Please sign in to comment.