81bd2c20 by Jeff Balicki

hover

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 2eb634db
...@@ -16870,10 +16870,17 @@ html.mega-menu-primary-off-canvas-open #wpadminbar { ...@@ -16870,10 +16870,17 @@ html.mega-menu-primary-off-canvas-open #wpadminbar {
16870 display: flex; 16870 display: flex;
16871 margin-bottom: 0rem; 16871 margin-bottom: 0rem;
16872 margin-top: 0.9375rem; 16872 margin-top: 0.9375rem;
16873 z-index: 999;
16874 position: relative;
16873 } 16875 }
16874 .branding .navbar-brand { 16876 .branding .navbar-brand {
16875 margin-right: 0px; 16877 margin-right: 0px;
16876 } 16878 }
16879 @media only screen and (max-width: 48.875rem) {
16880 .branding .navbar-brand {
16881 margin-right: 15px;
16882 }
16883 }
16877 16884
16878 #main-nav { 16885 #main-nav {
16879 box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137); 16886 box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
...@@ -19431,6 +19438,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -19431,6 +19438,7 @@ ul.sf_date_field .sf-datepicker {
19431 .entry-header.page .search-box:focus-within #search-box-content, 19438 .entry-header.page .search-box:focus-within #search-box-content,
19432 .entry-header.page .search-box:hover #search-box-content { 19439 .entry-header.page .search-box:hover #search-box-content {
19433 opacity: 1; 19440 opacity: 1;
19441 width: 100%;
19434 } 19442 }
19435 .entry-header.page .search-box:focus-within .search-button, 19443 .entry-header.page .search-box:focus-within .search-button,
19436 .entry-header.page .search-box:hover .search-button { 19444 .entry-header.page .search-box:hover .search-button {
...@@ -19491,6 +19499,10 @@ ul.sf_date_field .sf-datepicker { ...@@ -19491,6 +19499,10 @@ ul.sf_date_field .sf-datepicker {
19491 .entry-header.page .search-box #search-box-content { 19499 .entry-header.page .search-box #search-box-content {
19492 opacity: 0; 19500 opacity: 0;
19493 position: relative; 19501 position: relative;
19502 width: 0px;
19503 transition: 0.5s ease-in-out;
19504 position: absolute;
19505 right: 0px;
19494 } 19506 }
19495 .entry-header.page .search-box #search-box-content p { 19507 .entry-header.page .search-box #search-box-content p {
19496 display: none; 19508 display: none;
......
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.
...@@ -263,22 +263,6 @@ blockquote{ ...@@ -263,22 +263,6 @@ blockquote{
263 top: 15px; 263 top: 15px;
264 margin-left: 10px; 264 margin-left: 10px;
265 } 265 }
266
267 // .badge-title{
268 // color: #000000;
269 // font-size: 1rem;
270 // line-height: 1.875rem;
271 // font-weight: bold;
272 // position: absolute;
273 // right: 0px;
274 // display: inline-block;
275 // //left:100%;
276 // @media only screen and (max-width: 48.875rem) {
277 // font-size: 0rem;
278 // line-height: 0rem;
279 // }
280
281 // }
282 .badge_content{ 266 .badge_content{
283 width: 0px; 267 width: 0px;
284 height: 0px; 268 height: 0px;
...@@ -308,20 +292,7 @@ blockquote{ ...@@ -308,20 +292,7 @@ blockquote{
308 @media only screen and (max-width: 48.875rem) { 292 @media only screen and (max-width: 48.875rem) {
309 padding: 0.625rem 1.25rem; 293 padding: 0.625rem 1.25rem;
310 } 294 }
311 // .badge-title{ 295
312 // display: block;
313 // @media only screen and (max-width: 48.875rem) {
314 // font-size:1rem;
315 // line-height: 1.875rem;
316 // }
317 // &:after{
318 // float: right;
319 // @media only screen and (max-width: 48.875rem) {
320 // margin-left: 0.625rem;
321 // top: 0.25rem;
322 // }
323 // }
324 // }
325 .badge_content{ 296 .badge_content{
326 width: 300px; 297 width: 300px;
327 height: 100px; 298 height: 100px;
......
...@@ -21,8 +21,13 @@ ...@@ -21,8 +21,13 @@
21 display: flex; 21 display: flex;
22 margin-bottom: 0rem; 22 margin-bottom: 0rem;
23 margin-top: 0.9375rem; 23 margin-top: 0.9375rem;
24 z-index: 999;
25 position: relative;
24 .navbar-brand{ 26 .navbar-brand{
25 margin-right:0px ; 27 margin-right:0px ;
28 @media only screen and (max-width: 48.875rem) {
29 margin-right:15px ;
30 }
26 } 31 }
27 } 32 }
28 #main-nav{ 33 #main-nav{
......
...@@ -44,11 +44,13 @@ ...@@ -44,11 +44,13 @@
44 width: 100%; 44 width: 100%;
45 height: 90px; 45 height: 90px;
46 46
47
47 } 48 }
48 49
49 .search-box:focus-within #search-box-content, 50 .search-box:focus-within #search-box-content,
50 .search-box:hover #search-box-content{ 51 .search-box:hover #search-box-content{
51 opacity: 1; 52 opacity: 1;
53 width: 100%;
52 } 54 }
53 55
54 56
...@@ -76,7 +78,6 @@ ...@@ -76,7 +78,6 @@
76 max-width: 80%; 78 max-width: 80%;
77 margin: auto; 79 margin: auto;
78 margin-top: 2.5rem; 80 margin-top: 2.5rem;
79 //padding: 0rem 6.25rem ;
80 position: absolute; 81 position: absolute;
81 box-shadow: -2px 7px 7px 0 rgba(0,0,0,.25); 82 box-shadow: -2px 7px 7px 0 rgba(0,0,0,.25);
82 transition: 0.5s ease-in-out; 83 transition: 0.5s ease-in-out;
...@@ -117,6 +118,10 @@ ...@@ -117,6 +118,10 @@
117 #search-box-content{ 118 #search-box-content{
118 opacity: 0; 119 opacity: 0;
119 position: relative; 120 position: relative;
121 width: 0px;
122 transition: 0.5s ease-in-out;
123 position: absolute;
124 right: 0px;
120 p{display: none;} 125 p{display: none;}
121 } 126 }
122 #search-box-content.show{ 127 #search-box-content.show{
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.454 5 Version: 1.0.455
6 */ 6 */
7 7
......