a2449d33 by Jeff Balicki

hovers

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent a1348547
...@@ -14582,6 +14582,9 @@ h1 + p, .h1 + p { ...@@ -14582,6 +14582,9 @@ h1 + p, .h1 + p {
14582 margin-bottom: 25px; 14582 margin-bottom: 25px;
14583 font-family: "trade-gothic-next"; 14583 font-family: "trade-gothic-next";
14584 } 14584 }
14585 .hero-content h1 + p, .hero-content .h1 + p {
14586 font-size: 20px;
14587 }
14585 14588
14586 #wrapper-footer { 14589 #wrapper-footer {
14587 background-color: #183668; 14590 background-color: #183668;
...@@ -14679,6 +14682,27 @@ h1 + p, .h1 + p { ...@@ -14679,6 +14682,27 @@ h1 + p, .h1 + p {
14679 display: none; 14682 display: none;
14680 } 14683 }
14681 14684
14685 .um input[type=submit].um-button, .um input[type=submit].um-button:focus, .um a.um-button {
14686 text-transform: uppercase !important;
14687 background-color: #183668 !important;
14688 background: #183668 !important;
14689 color: #fff;
14690 border-radius: 0px !important;
14691 }
14692
14693 .um input[type=submit].um-button:hover, .um input[type=submit].um-button:focus, .um a.um-button:hover {
14694 background-color: #132C55 !important;
14695 background: #132C55 !important;
14696 }
14697
14698 .um .um-tip:hover, .um .um-field-radio.active:not(.um-field-radio-state-disabled) i, .um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i, .um .um-member-name a:hover, .um .um-member-more a:hover, .um .um-member-less a:hover, .um .um-members-pagi a:hover, .um .um-cover-add:hover, .um .um-profile-subnav a.active, .um .um-item-meta a, .um-account-name a:hover, .um-account-nav a.current, .um-account-side li a.current span.um-account-icon, .um-account-side li a.current:hover span.um-account-icon, .um-dropdown li a:hover, i.um-active-color, span.um-active-color {
14699 color: #3EAF49 !important;
14700 }
14701
14702 .um-account-profile-link {
14703 display: none !important;
14704 }
14705
14682 .entry-content .is-layout-constrained.wp-block-group { 14706 .entry-content .is-layout-constrained.wp-block-group {
14683 box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137); 14707 box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
14684 padding: 40px 32px; 14708 padding: 40px 32px;
...@@ -15046,6 +15070,9 @@ td.hidden { ...@@ -15046,6 +15070,9 @@ td.hidden {
15046 color: #fff; 15070 color: #fff;
15047 padding: 5px 10px; 15071 padding: 5px 10px;
15048 } 15072 }
15073 .table-like__item .button:hover {
15074 background-color: #132C55 !important;
15075 }
15049 15076
15050 #resources_wrapper { 15077 #resources_wrapper {
15051 margin-top: 20px; 15078 margin-top: 20px;
......
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.
...@@ -58,6 +58,6 @@ ...@@ -58,6 +58,6 @@
58 margin-bottom: 25px; 58 margin-bottom: 25px;
59 font-family:"trade-gothic-next"; 59 font-family:"trade-gothic-next";
60 } 60 }
61 61 h1 + p { font-size: 20px; }
62 62
63 } 63 }
......
...@@ -100,4 +100,24 @@ ...@@ -100,4 +100,24 @@
100 #wrapper-footer{ 100 #wrapper-footer{
101 display: none; 101 display: none;
102 } 102 }
103 }
104
105
106 .um input[type=submit].um-button, .um input[type=submit].um-button:focus, .um a.um-button{
107 text-transform: uppercase !important;
108 background-color: #183668 !important;
109 background:#183668 !important;
110 color: #fff;
111 border-radius: 0px !important;
112 }
113 .um input[type=submit].um-button:hover, .um input[type=submit].um-button:focus, .um a.um-button:hover{
114 background-color: #132C55 !important;
115 background:#132C55 !important;
116
117 }
118 .um .um-tip:hover, .um .um-field-radio.active:not(.um-field-radio-state-disabled) i, .um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i, .um .um-member-name a:hover, .um .um-member-more a:hover, .um .um-member-less a:hover, .um .um-members-pagi a:hover, .um .um-cover-add:hover, .um .um-profile-subnav a.active, .um .um-item-meta a, .um-account-name a:hover, .um-account-nav a.current, .um-account-side li a.current span.um-account-icon, .um-account-side li a.current:hover span.um-account-icon, .um-dropdown li a:hover, i.um-active-color, span.um-active-color{
119 color:#3EAF49 !important;
120 }
121 .um-account-profile-link{
122 display: none !important;
103 } 123 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -241,7 +241,9 @@ td.hidden { ...@@ -241,7 +241,9 @@ td.hidden {
241 background-color: #183668; 241 background-color: #183668;
242 color:#fff; 242 color:#fff;
243 padding: 5px 10px; 243 padding: 5px 10px;
244 244 }
245 .button:hover{
246 background-color: #132C55 !important;
245 } 247 }
246 } 248 }
247 #resources_wrapper { 249 #resources_wrapper {
......