33737a1e by Jeff Balicki

ssss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent cd71b96b
...@@ -14506,10 +14506,23 @@ h1, .h1 { ...@@ -14506,10 +14506,23 @@ h1, .h1 {
14506 14506
14507 h1.entry-title, .entry-title.h1 { 14507 h1.entry-title, .entry-title.h1 {
14508 color: #0484B8; 14508 color: #0484B8;
14509 margin-right: 10%;
14510 }
14511 @media only screen and (max-width: 768px) {
14512 h1.entry-title, .entry-title.h1 {
14513 margin-right: 20px;
14514 }
14509 } 14515 }
14510 14516
14511 .resource-template-default .entry-content { 14517 .resource-template-default .entry-content {
14512 margin-top: 40px; 14518 margin-top: 40px;
14519 margin-bottom: 40px;
14520 margin-right: 10%;
14521 }
14522 @media only screen and (max-width: 768px) {
14523 .resource-template-default .entry-content {
14524 margin-right: 20px;
14525 }
14513 } 14526 }
14514 14527
14515 h2, .h2 { 14528 h2, .h2 {
...@@ -14759,6 +14772,7 @@ input[type=checkbox] { ...@@ -14759,6 +14772,7 @@ input[type=checkbox] {
14759 background-color: #fff; 14772 background-color: #fff;
14760 height: 128px; 14773 height: 128px;
14761 transition: 0.4s; 14774 transition: 0.4s;
14775 box-shadow: 1px 2px 5px -2px #000000;
14762 } 14776 }
14763 @media only screen and (max-width: 768px) { 14777 @media only screen and (max-width: 768px) {
14764 #main-nav { 14778 #main-nav {
...@@ -15917,6 +15931,13 @@ label[for=quicksearch] { ...@@ -15917,6 +15931,13 @@ label[for=quicksearch] {
15917 .filters .filter-group .sort-button-group { 15931 .filters .filter-group .sort-button-group {
15918 align-self: flex-end; 15932 align-self: flex-end;
15919 } 15933 }
15934 .filters .filter-group .sort-button-group label {
15935 font-weight: 700;
15936 color: #0484b8;
15937 vertical-align: middle;
15938 margin-right: 10px;
15939 margin-top: 7px;
15940 }
15920 @media only screen and (max-width: 1100px) { 15941 @media only screen and (max-width: 1100px) {
15921 .filters .filter-group .sort-button-group { 15942 .filters .filter-group .sort-button-group {
15922 align-self: inherit; 15943 align-self: inherit;
...@@ -15924,7 +15945,8 @@ label[for=quicksearch] { ...@@ -15924,7 +15945,8 @@ label[for=quicksearch] {
15924 } 15945 }
15925 } 15946 }
15926 .filters .filter-group .sort-button-group .btn, .filters .filter-group .sort-button-group .wpcf7 input[type=submit], .wpcf7 .filters .filter-group .sort-button-group input[type=submit], .filters .filter-group .sort-button-group .woocommerce-notices-wrapper .woocommerce-message a.button, .woocommerce-notices-wrapper .woocommerce-message .filters .filter-group .sort-button-group a.button, .filters .filter-group .sort-button-group .woocommerce-info a.button, .woocommerce-info .filters .filter-group .sort-button-group a.button { 15947 .filters .filter-group .sort-button-group .btn, .filters .filter-group .sort-button-group .wpcf7 input[type=submit], .wpcf7 .filters .filter-group .sort-button-group input[type=submit], .filters .filter-group .sort-button-group .woocommerce-notices-wrapper .woocommerce-message a.button, .woocommerce-notices-wrapper .woocommerce-message .filters .filter-group .sort-button-group a.button, .filters .filter-group .sort-button-group .woocommerce-info a.button, .woocommerce-info .filters .filter-group .sort-button-group a.button {
15927 border: 1px solid #0081bc; 15948 border: 1px solid #8E908F;
15949 font-weight: 300;
15928 } 15950 }
15929 .filters .filter-group.open { 15951 .filters .filter-group.open {
15930 display: flex; 15952 display: flex;
......
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.
...@@ -29,6 +29,7 @@ function course_list(){ ...@@ -29,6 +29,7 @@ function course_list(){
29 <?php }; ?> 29 <?php }; ?>
30 </div> 30 </div>
31 <div class="btn-group sort-button-group"> 31 <div class="btn-group sort-button-group">
32 <label>SORT BY:</label>
32 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="coursename" type="button">Name <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button> 33 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="coursename" type="button">Name <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button>
33 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="coursedate" type="button">Date <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button> 34 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="coursedate" type="button">Date <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button>
34 </div> 35 </div>
......
...@@ -41,6 +41,7 @@ function resources_list(){ ...@@ -41,6 +41,7 @@ function resources_list(){
41 </div> 41 </div>
42 </div> 42 </div>
43 <div class="btn-group sort-button-group"> 43 <div class="btn-group sort-button-group">
44 <label>SORT BY:</label>
44 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="1" type="button">Name <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button> 45 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="1" type="button">Name <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button>
45 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="3" type="button">Date <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button> 46 <button class="btn btn-light" data-sort-direction="asc" data-sort-value="3" type="button">Date <span aria-hidden="true" class="glyphicon glyphicon-chevron-up"></span></button>
46 </div> 47 </div>
......
...@@ -34,11 +34,20 @@ h1{ ...@@ -34,11 +34,20 @@ h1{
34 } 34 }
35 h1.entry-title{ 35 h1.entry-title{
36 color: #0484B8; 36 color: #0484B8;
37 margin-right: 10%;
38 @media only screen and (max-width: 768px) {
39 margin-right: 20px;
40 }
37 } 41 }
38 42
39 .resource-template-default { 43 .resource-template-default {
40 .entry-content{ 44 .entry-content{
41 margin-top: 40px; 45 margin-top: 40px;
46 margin-bottom: 40px;
47 margin-right: 10%;
48 @media only screen and (max-width: 768px) {
49 margin-right: 20px;
50 }
42 } 51 }
43 } 52 }
44 53
......
...@@ -44,12 +44,21 @@ label[for="quicksearch"] { ...@@ -44,12 +44,21 @@ label[for="quicksearch"] {
44 } 44 }
45 .sort-button-group { 45 .sort-button-group {
46 align-self: flex-end; 46 align-self: flex-end;
47 label{
48 font-weight: 700;
49 color: #0484b8;
50 vertical-align: middle;
51 margin-right: 10px;
52 margin-top: 7px;
53 }
47 @media only screen and (max-width: 1100px) { 54 @media only screen and (max-width: 1100px) {
48 align-self:inherit; 55 align-self:inherit;
49 margin-top: 20px; 56 margin-top: 20px;
57
50 } 58 }
51 .btn { 59 .btn {
52 border: 1px solid #0081bc; 60 border: 1px solid #8E908F;
61 font-weight: 300;
53 } 62 }
54 } 63 }
55 } 64 }
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
34 background-color: #fff; 34 background-color: #fff;
35 height: 128px; 35 height: 128px;
36 transition: 0.4s; 36 transition: 0.4s;
37 box-shadow:1px 2px 5px -2px #000000;
37 @media only screen and (max-width: 768px) { 38 @media only screen and (max-width: 768px) {
38 height: auto; 39 height: auto;
39 } 40 }
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 Author: Tenzing Communications 5 Author: Tenzing Communications
6 Author URI: https://tenzingbrand.com 6 Author URI: https://tenzingbrand.com
7 Template: understrap 7 Template: understrap
8 Version: 1.1.0023 8 Version: 1.1.0024
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
......