53735f79 by Jeff Balicki

but

1 parent 48cbd286
...@@ -17275,10 +17275,20 @@ ss3-force-full-width { ...@@ -17275,10 +17275,20 @@ ss3-force-full-width {
17275 #full-width-page-wrapper.sub table tr:nth-child(even) { 17275 #full-width-page-wrapper.sub table tr:nth-child(even) {
17276 background-color: #F3F3F3; 17276 background-color: #F3F3F3;
17277 } 17277 }
17278 #full-width-page-wrapper.sub .wp-block-button__link { 17278 @media (max-width: 600px) {
17279 #full-width-page-wrapper.sub .wp-block-button {
17280 width: 100%;
17281 }
17282 }
17283 #full-width-page-wrapper.sub .wp-block-button .wp-block-button__link {
17279 background-color: #012169; 17284 background-color: #012169;
17280 border-radius: 0rem; 17285 border-radius: 0rem;
17281 } 17286 }
17287 @media (max-width: 600px) {
17288 #full-width-page-wrapper.sub .wp-block-button .wp-block-button__link {
17289 width: 100%;
17290 }
17291 }
17282 #full-width-page-wrapper.sub a.wp-block-button__link:focus, 17292 #full-width-page-wrapper.sub a.wp-block-button__link:focus,
17283 #full-width-page-wrapper.sub a.wp-block-button__link:hover { 17293 #full-width-page-wrapper.sub a.wp-block-button__link:hover {
17284 background-color: #005eb8; 17294 background-color: #005eb8;
......
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.
...@@ -85,10 +85,17 @@ width: 23%; ...@@ -85,10 +85,17 @@ width: 23%;
85 } 85 }
86 table tr:nth-child(odd){background-color: #E5E6E6;} 86 table tr:nth-child(odd){background-color: #E5E6E6;}
87 table tr:nth-child(even){background-color: #F3F3F3;} 87 table tr:nth-child(even){background-color: #F3F3F3;}
88 88 .wp-block-button{
89 @media (max-width: 600px) {
90 width: 100%;
91 }
89 .wp-block-button__link{ 92 .wp-block-button__link{
90 background-color: #012169; 93 background-color: #012169;
91 border-radius: 0rem; 94 border-radius: 0rem;
95 @media (max-width: 600px) {
96 width: 100%;
97 }
98 }
92 } 99 }
93 a.wp-block-button__link:focus, 100 a.wp-block-button__link:focus,
94 a.wp-block-button__link:hover{ 101 a.wp-block-button__link:hover{
......