Skip to content

Instantly share code, notes, and snippets.

@zephyrmike
Created May 22, 2020 22:29
Show Gist options
  • Save zephyrmike/adb427ed9701b52de3903e90b7991521 to your computer and use it in GitHub Desktop.
Save zephyrmike/adb427ed9701b52de3903e90b7991521 to your computer and use it in GitHub Desktop.
GeneratePress Navigation Buttons
/* first button */
.main-navigation:not(.slideout-navigation) .main-nav li.first-button a {
background-color: rgba(178,139,178,1.0);
color: #ffffff;
border: 0;
line-height: 40px;
padding: 0px 24px;
border-radius: 50px;
margin-left: 20px;
transition: all 0.5s ease 0s;
}
.main-navigation:not(.slideout-navigation) .main-nav li.first-button a:hover {
background-color: rgba(178,139,178,0.8);
color: #ffffff;
transition: all 0.5s ease 0s;
}
/* second button */
.main-navigation:not(.slideout-navigation) .main-nav li.second-button a {
background-color: rgba(132,140,183,1.0);
color: #ffffff;
border: 0;
line-height: 40px;
padding: 0px 24px;
border-radius: 50px;
margin-left: 30px;
transition: all 0.5s ease 0s;
}
.main-navigation:not(.slideout-navigation) .main-nav li.second-button a:hover {
background-color: rgba(132,140,183,0.8);
color: #ffffff;
transition: all 0.5s ease 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment