Last active
February 12, 2021 13:25
-
-
Save AertHulsebos/d7936d8bd9e2f76de85cf2eccd44a1eb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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