Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post page redesigned format #188

Merged
merged 18 commits into from
Mar 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 57 additions & 26 deletions mysite/assets/js/modules/mobile-menu-interaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,31 +69,62 @@ function addMenuResponsivity() {
$(addMenuResponsivity);


var $window = $( window ); // so you have a "cached" reference
// var breakpoint = 640;

$window.resize ( function () {
// console.log("calling resize");
if ($window.width() > currHeaderBreakpoint ) {
// if (clicked == true ) {
console.log("width is greater");
$(".mobile-sidemenu").css("display", "none");
$(".sidemenu").css("display", "block");
$(".mobile-header").css("display", "none");
$(".content-container").css("display", "table-cell");
$("footer").css("display", "block");
sideMenuExpanded = false;
headerMenuExpanded = false;
var $window = $( window );

var desktopMediaQuery = window.matchMedia("(min-width: " + desktopHeaderBreakpoint + "px)");
desktopMediaQuery.addListener(WidthChange);
WidthChange(desktopMediaQuery);

function WidthChange(mq) {

if (mq.matches) {
console.log("width is greater");
$(".mobile-sidemenu").css("display", "none");
$(".sidemenu").css("display", "block");
$(".mobile-header").css("display", "none");
$(".content-container").css("display", "table-cell");
$("footer").css("display", "block");
sideMenuExpanded = false;
headerMenuExpanded = false;
} else {
console.log("width is less");
$(".mobile-sidemenu").css("display", "block");

if (!sideMenuExpanded) {
$(".sidemenu").css("display", "none");
$(".content-container").css("display", "block");
}
if (!headerMenuExpanded) {
$(".mobile-header").css("display", "none");
}
}

}

// $window.resize ( function () {
// console.log($window.width());
// // console.log("calling resize");
// if ($window.width() >= currHeaderBreakpoint ) {
// // if (clicked == true ) {
// console.log("width is greater");
// $(".mobile-sidemenu").css("display", "none");
// $(".sidemenu").css("display", "block");
// $(".mobile-header").css("display", "none");
// $(".content-container").css("display", "table-cell");
// $("footer").css("display", "block");
// sideMenuExpanded = false;
// headerMenuExpanded = false;

} else {
$(".mobile-sidemenu").css("display", "block");

if (!sideMenuExpanded) {
$(".sidemenu").css("display", "none");
}
if (!headerMenuExpanded) {
$(".mobile-header").css("display", "none");
}
}
// } else {
// console.log("width is less");
// $(".mobile-sidemenu").css("display", "block");

// if (!sideMenuExpanded) {
// $(".sidemenu").css("display", "none");
// }
// if (!headerMenuExpanded) {
// $(".mobile-header").css("display", "none");
// }
// }

});
// });
59 changes: 39 additions & 20 deletions mysite/assets/scss/base/layout/_containers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
width:100%;
/*padding-top:$mobile-header-height;*/


@include desktop-header {
height:100%;
display: table-cell;
Expand All @@ -32,13 +31,13 @@
}

.content-container {

height:100%;
display: block;
/*padding-top:$mobile-header-height;*/
/*padding: $desktop-padding;*/
/*background-color: palette-get(na-white);*/

@include breakpoint(medium) {
@include desktop-header {
padding: $desktop-padding;
}
@include expanded-header {
Expand All @@ -62,19 +61,29 @@
}
}

.breadcrumb-container {

& > .breadcrumb > li , & > .breadcrumb > li > a {
color: palette-get(na-black-40);
}
.breadcrumb-social-media-container {
height: 48px;
position: relative;
top: 10px;
display: none;

@include desktop-header {
padding-left: 25px;
padding-top: 10px;
height: 60px;
display: block;
}
@include expanded-header {
display: block;
}

}

.columns {
padding: 0px;
height: 25px;

& > .breadcrumb > li , & > .breadcrumb > li > a {
color: grey;
}
}
}

.hero-grid-container {
padding-left: 0px;
Expand Down Expand Up @@ -127,12 +136,22 @@
}
}
}
}

.hero-grid-container {
padding-left: 0px;
padding-right: 0px;
}

.post-container {
max-width: $max-body-width;
padding-top: $desktop-padding;
padding-left: $mobile-padding;
padding-right: $mobile-padding;

@include desktop-header {
padding-left:0px;
padding-right:0px;
}
}

/*@include breakpoint(medium) {
padding: 10px 0px 10px 0px;

}
@include breakpoint(large) {
padding: 0px 10px 0px 10px;
}*/
}
1 change: 1 addition & 0 deletions mysite/assets/scss/components/_manifest.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@
@import 'content-entry';
@import 'event';
@import 'menu-flip-arrow';
@import 'social-icons';
67 changes: 53 additions & 14 deletions mysite/assets/scss/components/_post-body.scss
Original file line number Diff line number Diff line change
@@ -1,35 +1,74 @@
.post-body {
max-width: $max-body-width;
/*width: 100%;*/
/*margin: auto;*/
/*padding: 0 $gutter / 2;*/
padding-top: 30px;
padding-left: 30px;
padding-top:$desktop-padding;

& > .block-heading {
color: palette-get(na-black);
font-size:1.50rem;
font-weight: bold;
}

& > .block-paragraph {

&:first-letter {
font-size:110px;
color: palette-get(na-black);
font-weight: bold;
opacity: 1;
float: left;
padding: 20px 10px 5px 0px;
height: 55px;
margin-right: 0px;
line-height: 70px;
}
}

& > .block-paragraph ~ .block-paragraph {
&:first-letter {
font-size:1.25rem;
font-weight:initial;
float: initial;
padding: initial;
height: initial;
/*margin-right: inherit;*/
line-height: initial;
}
}

/*p,
p,
blockquote {
font-size: rem-calc(20);
color: palette-get(na-black);
color: palette-get(na-black-70);
}
blockquote {
margin: 20px 0;
border-left-width: 4px;
border-color: palette-get(na-black);
padding: 0 15px;
font-style: italic;
}*/
}

& > .block-attachment {

}
}



.post-author {
margin-top: 8px;
font-size: 16px;
font-weight:bold;
}

.post-date {
font-size: 15px;
color: palette-get(na-off-black);
margin-bottom: 0px;
}

.post-subscribe {
margin-top: 30px;
height: 300px;
border-width: 2.5px;
/*width: 100%;*/
}

.post-date {
font-size: 16px;
color: palette-get(na-black-40);
}
43 changes: 43 additions & 0 deletions mysite/assets/scss/components/_social-icons.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
div.social-icons {
width: 200px;
padding: 0px;
float: right;
}

div.social-icons svg {
opacity: 0.3;
}

div.social-icons svg:hover {
opacity: 1;
-webkit-transition: 0.4s;
transition: 0.4s;
}

div.social-icons svg#facebook-icon {
width: 10%;
margin-right: 8.75%;
}

div.social-icons svg#twitter-icon {
width: 11%;
margin-right: 8.75%;
}

div.social-icons svg#google-plus-icon {
width: 14%;
margin-right: 8.75%;
}

div.social-icons svg#linked-in-icon {
width: 10%;
margin-right: 8.75%;
}

div.social-icons svg#youtube-icon {
width: 12%;
}

div.social-icons .st0 {
fill: #2C2F35;
}
8 changes: 5 additions & 3 deletions mysite/assets/scss/modules/post-header/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ $post-header-height:225px;
.post-header {
width: 100%;
background-repeat: no-repeat;
background-size: 100% 100%;
background-size: cover;
background-position: 50% 50%;
position:static;

&__text {
Expand All @@ -15,9 +16,10 @@ $post-header-height:225px;
}

&__title h1 {
font-size: 40px;
font-size: 30px;
max-width: $max-body-width;
@include breakpoint(large) {
font-size: 50px;
font-size: 40px;
}
/*font-size: 50px;*/

Expand Down
4 changes: 3 additions & 1 deletion mysite/assets/scss/variables/_base.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
$max-site-width: 1350px;

$max-body-width: 750px;
$max-sidemenu-width: 250px;

Expand All @@ -23,4 +24,5 @@ $expanded-header-foldup: 750px;
$desktop-show-support: 1045px;
$expanded-show-support: 850px;

$home-border-panel-foldup: 400px;
$home-border-panel-foldup: 400px;

1 change: 1 addition & 0 deletions mysite/assets/scss/variables/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $_color-palette: (
dark-cinnabar-red: #477da3,
na-black: #2c2f35,
na-off-black: #383b43,
na-black-70: #797c82,
na-black-40: #abacae,
na-black-10: #eaeaeb,
na-white: #ffffff,
Expand Down
Loading