Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Padding Fixes
Browse files Browse the repository at this point in the history
- Fixed padding on interior pages
- Fixed UUP list layout
- Commented out some sections that were causing errors so I can see why
they were doing so. Will delete or alter in a future push
  • Loading branch information
briandunnigan authored and briandunnigan committed Oct 27, 2014
1 parent b4b532a commit 55a8261
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 38 deletions.
68 changes: 43 additions & 25 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Description: Aurora's new theme for 2014.
Author: UITS Web Development Lab
Template: cornerstone
Version: 1.0.0
Version: 1.0.1
*/
/*
SHERMAN variables
Expand Down Expand Up @@ -7897,8 +7897,6 @@ body {
}
#masthead #uc-site-title a {
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#masthead #uc-site-title a:hover {
color: white;
Expand Down Expand Up @@ -8097,8 +8095,23 @@ body {
#main {
border: 1px solid #eee;
border-top: none;
padding-left: 3em;
padding-right: 3em;
}
#main .post {
padding: 1em 0em;
}

#content {
/* .col-sm-12 .page {
padding-left:3em;
padding-right:3em;
}
.col-sm-9 .page {
padding-left:3em;
padding-right:3em;
} */
}
#content .page {
padding-top: 0px;
padding-bottom: 4em;
Expand Down Expand Up @@ -8128,14 +8141,6 @@ body {
#content #page-archive .entry-header .page-title {
padding-left: 0.57em;
}
#content .col-sm-12 .page {
padding-left: 3em;
padding-right: 3em;
}
#content .col-sm-9 .page {
padding-left: 3em;
padding-right: 3em;
}
#content #page-blank .page {
padding-left: 0;
padding-right: 0;
Expand Down Expand Up @@ -8165,6 +8170,10 @@ body {
border-right: 1px solid #cccccc;
}

#comments .form-control {
border-right: 1px solid #cccccc;
}

#site-title .searchform .form-group .form-control {
font-size: 12px;
}
Expand Down Expand Up @@ -8197,20 +8206,29 @@ body {
margin: 0 0 10px;
}

.page .col-xs-1, .page .col-sm-1, .page .col-md-1, .page .col-lg-1, .page .col-xs-2, .page .col-sm-2, .page .col-md-2, .page .col-lg-2, .page .col-xs-3, .page .col-sm-3, .page .col-md-3, .page .col-lg-3, .page .col-xs-4, .page .col-sm-4, .page .col-md-4, .page .col-lg-4, .page .col-xs-5, .page .col-sm-5, .page .col-md-5, .page .col-lg-5, .page .col-xs-6, .page .col-sm-6, .page .col-md-6, .page .col-lg-6, .page .col-xs-7, .page .col-sm-7, .page .col-md-7, .page .col-lg-7, .page .col-xs-8, .page .col-sm-8, .page .col-md-8, .page .col-lg-8, .page .col-xs-9, .page .col-sm-9, .page .col-md-9, .page .col-lg-9, .page .col-xs-10, .page .col-sm-10, .page .col-md-10, .page .col-lg-10, .page .col-xs-11, .page .col-sm-11, .page .col-md-11, .page .col-lg-11, .page .col-xs-12, .page .col-sm-12, .page .col-md-12, .page .col-lg-12 {
padding-left: 15px;
padding-right: 15px;
}
.page .entry-header {
padding-left: 15px;
padding-right: 15px;
/*
.page {
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
padding-left:15px;
padding-right:15px;
}
.entry-header {
padding-left:15px;
padding-right:15px;
}
}
#content .col-sm-12 .page {
padding-left: 2em;
padding-right: 2em;
padding-left:2em;
padding-right:2em;
}
*/
#page-home {
padding-top: 15px;
}
Expand Down Expand Up @@ -8242,14 +8260,10 @@ body {
font-size: 13px;
}

.footer li {
footer li {
font-size: 13px;
}

#footers hr {
border-color: rgba(255, 255, 255, 0.15);
}

table .external .glyphicon-new-window {
font-size: 0.8em !important;
margin-left: 0.4em !important;
Expand Down Expand Up @@ -8289,3 +8303,7 @@ table .external .glyphicon-new-window {
.page-template-page-user-profile-php .uup-user .uup-phones .uup-phone2 {
display: block;
}

.uup-list a.uup-user {
float: none;
}
38 changes: 25 additions & 13 deletions style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Description: Aurora's new theme for 2014.
Author: UITS Web Development Lab
Template: cornerstone
Version: 1.0.0
Version: 1.0.1
*/


Expand Down Expand Up @@ -46,8 +46,7 @@ body {
}
#uc-site-title a {
color:$title_txt;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

&:hover {
color:$title_txtHover;
}
Expand Down Expand Up @@ -227,6 +226,13 @@ body {
#main {
border:1px solid #eee;
border-top:none;
padding-left:3em;
padding-right:3em;

.post {
padding:1em 0em;

}
}

#content {
Expand Down Expand Up @@ -267,14 +273,14 @@ body {
}
}

.col-sm-12 .page {
/* .col-sm-12 .page {
padding-left:3em;
padding-right:3em;
}
.col-sm-9 .page {
padding-left:3em;
padding-right:3em;
}
} */
#page-blank {
.page {
padding-left:0;
Expand Down Expand Up @@ -307,6 +313,10 @@ body {
.comment-form-comment .form-control {
border-right:1px solid #cccccc;
}

#comments .form-control {
border-right:1px solid #cccccc;
}

#site-title .searchform .form-group .form-control {
font-size:12px;
Expand Down Expand Up @@ -341,7 +351,7 @@ body {
}



/*
.page {
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
Expand All @@ -363,6 +373,7 @@ body {
padding-right:2em;
}
*/
#page-home {

padding-top:15px;
Expand Down Expand Up @@ -398,15 +409,10 @@ body {
font-size:13px;
}

.footer li {
footer li {
font-size:13px;
}

#footers hr {
border-color: rgba(255, 255, 255, 0.15);
}


table .external .glyphicon-new-window {
font-size: 0.8em !important;
margin-left: 0.4em !important;
Expand Down Expand Up @@ -438,6 +444,7 @@ table .external .glyphicon-new-window {
Profile Page
*/
.page-template-page-user-profile-php {

.uup-user {
padding: 2em;
& > span {
Expand Down Expand Up @@ -475,4 +482,9 @@ table .external .glyphicon-new-window {
.uup-mailing-address {
}
}
}
}

.uup-list a.uup-user {
float:none;
}

0 comments on commit 55a8261

Please sign in to comment.