1395efa4 by Jeff Balicki

ddd

1 parent bd580dc7
......@@ -15633,6 +15633,13 @@ ol li {
margin-bottom: 15px;
}
h1, .h1 {
font-family: "Calibri-bold";
color: #fff;
font-size: 3.75rem;
text-shadow: 0px 3px 3px #00000059;
}
h2, .h2 {
font-family: "Calibri-bold";
font-size: 2.5rem;
......@@ -16530,6 +16537,11 @@ ss3-force-full-width {
top: 50px;
}
}
@media screen and (max-width: 768px) {
.page-template-numbers-page div#n2-ss-2 .n2-ss-slide-limiter {
max-width: 1266px;
}
}
.page-template-numbers-page div#n2-ss-2item1,
.page-template-numbers-page div#n2-ss-2item2,
.page-template-numbers-page div#n2-ss-2item3 {
......@@ -16538,6 +16550,14 @@ ss3-force-full-width {
line-height: 3.75rem !important;
text-shadow: 0px 3px 3px #00000059 !important;
}
@media screen and (max-width: 768px) {
.page-template-numbers-page div#n2-ss-2item1,
.page-template-numbers-page div#n2-ss-2item2,
.page-template-numbers-page div#n2-ss-2item3 {
font-size: 2rem !important;
line-height: 3rem !important;
}
}
.intro {
background-color: #333F48;
......@@ -16548,19 +16568,6 @@ ss3-force-full-width {
padding-top: 50px;
padding-bottom: 50px;
}
.intro h1, .intro .h1 {
font-family: "Calibri-bold";
color: #fff;
font-size: 2.25rem;
display: none;
}
@media (max-width: 768px) {
.intro h1, .intro .h1 {
display: block;
font-size: 2.25rem;
line-height: 2.375rem;
}
}
.intro p {
font-family: "Calibri";
font-size: 1.875rem;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -72,15 +72,25 @@ jQuery( document ).ready(function($) {
}
updateContainer()
function updateContainer() {
var maxHeight = 0;
$(".numbers-block").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$(".numbers-block").height(maxHeight);
}
var maxHeight = 0;
$(window).on('resize', function(){
updateContainer()
$(".numbers-block").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
})
$(".numbers-block").height(maxHeight);
});
\ No newline at end of file
......
......@@ -30,6 +30,12 @@
margin-bottom: 15px;
}
}
h1 {
font-family: "Calibri-bold";
color: #fff;
font-size: 60px;
text-shadow: 0px 3px 3px #00000059;
}
h2 {
font-family: "Calibri-bold";
font-size: 40px;
......
......@@ -106,6 +106,12 @@ ss3-force-full-width{
top: 50px;
}
}
div#n2-ss-2 .n2-ss-slide-limiter{
@media screen and (max-width: 768px) {
max-width:1266px;
}
}
div#n2-ss-2item1,
div#n2-ss-2item2,
div#n2-ss-2item3{
......@@ -113,6 +119,10 @@ div#n2-ss-2item3{
font-size: 60px !important;
line-height: 60px !important;
text-shadow: 0px 3px 3px #00000059 !important;
@media screen and (max-width: 768px) {
font-size: 2rem!important;
line-height: 3rem!important;
}
}
}
......@@ -125,17 +135,7 @@ div#n2-ss-2item3{
padding-right: 45%;
padding-top: 50px;
padding-bottom: 50px;
h1 {
font-family: "Calibri-bold";
color: #fff;
font-size: 36px;
display: none;
@media (max-width: 768px) {
display: block;
font-size: 36px;
line-height: 38px;
}
}
p{
font-family: "Calibri";
font-size: 30px;
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.33
Version: 1.1.34
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......