Skip to content

Instantly share code, notes, and snippets.

@AertHulsebos
Last active February 12, 2021 13:25
Show Gist options
  • Save AertHulsebos/d7936d8bd9e2f76de85cf2eccd44a1eb to your computer and use it in GitHub Desktop.
Save AertHulsebos/d7936d8bd9e2f76de85cf2eccd44a1eb to your computer and use it in GitHub Desktop.
/* CSS example for the Terms & Conditions legal page - change it your liking */
/* Change Headers */
.cmplz-terms-conditions h2 {
font-size: 25px;
color: #2268DC;
font-weight: 600;
text-decoration:none;
}
/* Change Subtitles */
.cmplz-terms-conditions .cmplz-subtitle {
font-size: 20px;
color: #009359;
font-weight: bold;
text-decoration:none;
}
/* Change Regular Text */
.cmplz-terms-conditions p {
font-size: 15px;
font-family: inherit;
color: #333;
line-height: 2em;
font-weight: 400;
text-decoration:none;
}
/* Change Hyperlinks */
.cmplz-terms-conditions a {
font-size: 15px;
color: blue;
font-weight: 400;
text-decoration: none;
}
/* Change Hyperlinks on Hover */
.cmplz-terms-conditions a:hover {
font-size: 15px;
color: red;
font-weight: 400;
text-decoration: underline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment