Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Style fix for print button and cats/tags
  • Loading branch information
bcd04001 committed Jul 15, 2016
1 parent 9f608be commit 3d046d9
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 7 deletions.
4 changes: 3 additions & 1 deletion content-single.php
Expand Up @@ -52,6 +52,7 @@
</div><!-- .entry-content -->

<footer class="entry-footer">
<div class="cats-and-tags row">
<?php
/* translators: used between list items, there is a space after the comma */
$categories = get_the_category(get_the_ID());
Expand Down Expand Up @@ -96,7 +97,8 @@
get_permalink()
);
?>


</div>

<div id="social-buttons">

Expand Down
32 changes: 28 additions & 4 deletions css/executive.css
Expand Up @@ -11807,12 +11807,9 @@ h1.entry-title {
padding-right: 0px;
}
}
#page-single .col-sm-2, #page-archive .col-sm-2 {
padding-left: 0px;
}
#page-single .col-sm-10, #page-archive .col-sm-10 {
padding-left: 0px;
margin-left: -40px;
margin-left: -20px;
}
@media (max-width: 1200px) {
#page-single .col-sm-10, #page-archive .col-sm-10 {
Expand All @@ -11822,6 +11819,7 @@ h1.entry-title {
@media (max-width: 767px) {
#page-single .col-sm-10, #page-archive .col-sm-10 {
margin-bottom: 10px;
margin-left: 15px;
}
}
@media (max-width: 767px) {
Expand Down Expand Up @@ -11923,6 +11921,32 @@ h1.entry-title {
#page-single .social, #page-archive .social {
margin-right: 6px;
}
#page-single #social-buttons, #page-archive #social-buttons {
clear: both;
padding-bottom: 18px;
}
@media (max-width: 767px) {
#page-single #social-buttons, #page-archive #social-buttons {
padding-bottom: 0px;
}
}
#page-single #social-buttons .col-sm-2, #page-archive #social-buttons .col-sm-2 {
padding-left: 0px;
}
#page-single #social-buttons .col-sm-10, #page-archive #social-buttons .col-sm-10 {
padding-left: 0px;
margin-left: -30px;
}
@media (max-width: 1200px) {
#page-single #social-buttons .col-sm-10, #page-archive #social-buttons .col-sm-10 {
margin-left: -10px;
}
}
@media (max-width: 767px) {
#page-single #social-buttons .col-sm-10, #page-archive #social-buttons .col-sm-10 {
margin-left: 0px;
}
}
#page-single .relatedpost, #page-archive .relatedpost {
padding-left: 0px;
padding-right: 8px;
Expand Down
27 changes: 25 additions & 2 deletions sass/executive.scss
Expand Up @@ -1504,17 +1504,17 @@ padding:8px 12px 4px
}
}
.col-sm-2 {
padding-left:0px;
}
.col-sm-10 {
padding-left:0px;
margin-left:-40px;
margin-left:-20px;

@media (max-width:1200px) {
margin-left:0px;
}
@media (max-width:767px) {
margin-bottom:10px;
margin-left:15px;
}

&.social-section {
Expand Down Expand Up @@ -1641,6 +1641,29 @@ padding:8px 12px 4px
.social {
margin-right:6px;
}
#social-buttons {
clear:both;
padding-bottom:18px;

@media (max-width:767px) {
padding-bottom:0px;
}

.col-sm-2 {
padding-left:0px;
}
.col-sm-10 {
padding-left:0px;
margin-left:-30px;

@media (max-width:1200px) {
margin-left:-10px;
}
@media (max-width:767px) {
margin-left:0px;
}
}
}

.relatedpost{
padding-left:0px;
Expand Down

0 comments on commit 3d046d9

Please sign in to comment.