ddd
Showing
8 changed files
with
53 additions
and
30 deletions
| ... | @@ -15633,6 +15633,13 @@ ol li { | ... | @@ -15633,6 +15633,13 @@ ol li { |
| 15633 | margin-bottom: 15px; | 15633 | margin-bottom: 15px; |
| 15634 | } | 15634 | } |
| 15635 | 15635 | ||
| 15636 | h1, .h1 { | ||
| 15637 | font-family: "Calibri-bold"; | ||
| 15638 | color: #fff; | ||
| 15639 | font-size: 3.75rem; | ||
| 15640 | text-shadow: 0px 3px 3px #00000059; | ||
| 15641 | } | ||
| 15642 | |||
| 15636 | h2, .h2 { | 15643 | h2, .h2 { |
| 15637 | font-family: "Calibri-bold"; | 15644 | font-family: "Calibri-bold"; |
| 15638 | font-size: 2.5rem; | 15645 | font-size: 2.5rem; |
| ... | @@ -16530,6 +16537,11 @@ ss3-force-full-width { | ... | @@ -16530,6 +16537,11 @@ ss3-force-full-width { |
| 16530 | top: 50px; | 16537 | top: 50px; |
| 16531 | } | 16538 | } |
| 16532 | } | 16539 | } |
| 16540 | @media screen and (max-width: 768px) { | ||
| 16541 | .page-template-numbers-page div#n2-ss-2 .n2-ss-slide-limiter { | ||
| 16542 | max-width: 1266px; | ||
| 16543 | } | ||
| 16544 | } | ||
| 16533 | .page-template-numbers-page div#n2-ss-2item1, | 16545 | .page-template-numbers-page div#n2-ss-2item1, |
| 16534 | .page-template-numbers-page div#n2-ss-2item2, | 16546 | .page-template-numbers-page div#n2-ss-2item2, |
| 16535 | .page-template-numbers-page div#n2-ss-2item3 { | 16547 | .page-template-numbers-page div#n2-ss-2item3 { |
| ... | @@ -16538,6 +16550,14 @@ ss3-force-full-width { | ... | @@ -16538,6 +16550,14 @@ ss3-force-full-width { |
| 16538 | line-height: 3.75rem !important; | 16550 | line-height: 3.75rem !important; |
| 16539 | text-shadow: 0px 3px 3px #00000059 !important; | 16551 | text-shadow: 0px 3px 3px #00000059 !important; |
| 16540 | } | 16552 | } |
| 16553 | @media screen and (max-width: 768px) { | ||
| 16554 | .page-template-numbers-page div#n2-ss-2item1, | ||
| 16555 | .page-template-numbers-page div#n2-ss-2item2, | ||
| 16556 | .page-template-numbers-page div#n2-ss-2item3 { | ||
| 16557 | font-size: 2rem !important; | ||
| 16558 | line-height: 3rem !important; | ||
| 16559 | } | ||
| 16560 | } | ||
| 16541 | 16561 | ||
| 16542 | .intro { | 16562 | .intro { |
| 16543 | background-color: #333F48; | 16563 | background-color: #333F48; |
| ... | @@ -16548,19 +16568,6 @@ ss3-force-full-width { | ... | @@ -16548,19 +16568,6 @@ ss3-force-full-width { |
| 16548 | padding-top: 50px; | 16568 | padding-top: 50px; |
| 16549 | padding-bottom: 50px; | 16569 | padding-bottom: 50px; |
| 16550 | } | 16570 | } |
| 16551 | .intro h1, .intro .h1 { | ||
| 16552 | font-family: "Calibri-bold"; | ||
| 16553 | color: #fff; | ||
| 16554 | font-size: 2.25rem; | ||
| 16555 | display: none; | ||
| 16556 | } | ||
| 16557 | @media (max-width: 768px) { | ||
| 16558 | .intro h1, .intro .h1 { | ||
| 16559 | display: block; | ||
| 16560 | font-size: 2.25rem; | ||
| 16561 | line-height: 2.375rem; | ||
| 16562 | } | ||
| 16563 | } | ||
| 16564 | .intro p { | 16571 | .intro p { |
| 16565 | font-family: "Calibri"; | 16572 | font-family: "Calibri"; |
| 16566 | font-size: 1.875rem; | 16573 | 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($) { | ... | @@ -72,15 +72,25 @@ jQuery( document ).ready(function($) { |
| 72 | } | 72 | } |
| 73 | 73 | ||
| 74 | 74 | ||
| 75 | updateContainer() | ||
| 75 | 76 | ||
| 77 | function updateContainer() { | ||
| 78 | var maxHeight = 0; | ||
| 76 | 79 | ||
| 77 | var maxHeight = 0; | 80 | $(".numbers-block").each(function(){ |
| 78 | |||
| 79 | $(".numbers-block").each(function(){ | ||
| 80 | if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } | 81 | if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } |
| 81 | }); | 82 | }); |
| 83 | |||
| 84 | $(".numbers-block").height(maxHeight); | ||
| 85 | |||
| 86 | } | ||
| 87 | |||
| 88 | |||
| 89 | $(window).on('resize', function(){ | ||
| 90 | updateContainer() | ||
| 91 | |||
| 92 | }) | ||
| 82 | 93 | ||
| 83 | $(".numbers-block").height(maxHeight); | ||
| 84 | 94 | ||
| 85 | 95 | ||
| 86 | }); | 96 | }); |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -30,6 +30,12 @@ | ... | @@ -30,6 +30,12 @@ |
| 30 | margin-bottom: 15px; | 30 | margin-bottom: 15px; |
| 31 | } | 31 | } |
| 32 | } | 32 | } |
| 33 | h1 { | ||
| 34 | font-family: "Calibri-bold"; | ||
| 35 | color: #fff; | ||
| 36 | font-size: 60px; | ||
| 37 | text-shadow: 0px 3px 3px #00000059; | ||
| 38 | } | ||
| 33 | h2 { | 39 | h2 { |
| 34 | font-family: "Calibri-bold"; | 40 | font-family: "Calibri-bold"; |
| 35 | font-size: 40px; | 41 | font-size: 40px; | ... | ... |
| ... | @@ -106,6 +106,12 @@ ss3-force-full-width{ | ... | @@ -106,6 +106,12 @@ ss3-force-full-width{ |
| 106 | top: 50px; | 106 | top: 50px; |
| 107 | } | 107 | } |
| 108 | } | 108 | } |
| 109 | div#n2-ss-2 .n2-ss-slide-limiter{ | ||
| 110 | @media screen and (max-width: 768px) { | ||
| 111 | max-width:1266px; | ||
| 112 | } | ||
| 113 | } | ||
| 114 | |||
| 109 | div#n2-ss-2item1, | 115 | div#n2-ss-2item1, |
| 110 | div#n2-ss-2item2, | 116 | div#n2-ss-2item2, |
| 111 | div#n2-ss-2item3{ | 117 | div#n2-ss-2item3{ |
| ... | @@ -113,6 +119,10 @@ div#n2-ss-2item3{ | ... | @@ -113,6 +119,10 @@ div#n2-ss-2item3{ |
| 113 | font-size: 60px !important; | 119 | font-size: 60px !important; |
| 114 | line-height: 60px !important; | 120 | line-height: 60px !important; |
| 115 | text-shadow: 0px 3px 3px #00000059 !important; | 121 | text-shadow: 0px 3px 3px #00000059 !important; |
| 122 | @media screen and (max-width: 768px) { | ||
| 123 | font-size: 2rem!important; | ||
| 124 | line-height: 3rem!important; | ||
| 125 | } | ||
| 116 | } | 126 | } |
| 117 | 127 | ||
| 118 | } | 128 | } |
| ... | @@ -125,17 +135,7 @@ div#n2-ss-2item3{ | ... | @@ -125,17 +135,7 @@ div#n2-ss-2item3{ |
| 125 | padding-right: 45%; | 135 | padding-right: 45%; |
| 126 | padding-top: 50px; | 136 | padding-top: 50px; |
| 127 | padding-bottom: 50px; | 137 | padding-bottom: 50px; |
| 128 | h1 { | 138 | |
| 129 | font-family: "Calibri-bold"; | ||
| 130 | color: #fff; | ||
| 131 | font-size: 36px; | ||
| 132 | display: none; | ||
| 133 | @media (max-width: 768px) { | ||
| 134 | display: block; | ||
| 135 | font-size: 36px; | ||
| 136 | line-height: 38px; | ||
| 137 | } | ||
| 138 | } | ||
| 139 | p{ | 139 | p{ |
| 140 | font-family: "Calibri"; | 140 | font-family: "Calibri"; |
| 141 | font-size: 30px; | 141 | font-size: 30px; | ... | ... |
| ... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
| 5 | Author: the Understrap Contributors | 5 | Author: the Understrap Contributors |
| 6 | Author URI: https://github.com/understrap/understrap-child/graphs/contributors | 6 | Author URI: https://github.com/understrap/understrap-child/graphs/contributors |
| 7 | Template: understrap | 7 | Template: understrap |
| 8 | Version: 1.1.33 | 8 | Version: 1.1.34 |
| 9 | License: GNU General Public License v2 or later | 9 | License: GNU General Public License v2 or later |
| 10 | License URI: http://www.gnu.org/licenses/gpl-2.0.html | 10 | License URI: http://www.gnu.org/licenses/gpl-2.0.html |
| 11 | Text Domain: understrap-child | 11 | Text Domain: understrap-child | ... | ... |
-
Please register or sign in to post a comment