53735f79 by Jeff Balicki

but

1 parent 48cbd286
......@@ -17275,10 +17275,20 @@ ss3-force-full-width {
#full-width-page-wrapper.sub table tr:nth-child(even) {
background-color: #F3F3F3;
}
#full-width-page-wrapper.sub .wp-block-button__link {
@media (max-width: 600px) {
#full-width-page-wrapper.sub .wp-block-button {
width: 100%;
}
}
#full-width-page-wrapper.sub .wp-block-button .wp-block-button__link {
background-color: #012169;
border-radius: 0rem;
}
@media (max-width: 600px) {
#full-width-page-wrapper.sub .wp-block-button .wp-block-button__link {
width: 100%;
}
}
#full-width-page-wrapper.sub a.wp-block-button__link:focus,
#full-width-page-wrapper.sub a.wp-block-button__link:hover {
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%;
}
table tr:nth-child(odd){background-color: #E5E6E6;}
table tr:nth-child(even){background-color: #F3F3F3;}
.wp-block-button{
@media (max-width: 600px) {
width: 100%;
}
.wp-block-button__link{
background-color: #012169;
border-radius: 0rem;
@media (max-width: 600px) {
width: 100%;
}
}
}
a.wp-block-button__link:focus,
a.wp-block-button__link:hover{
......