forked from sqreen/CTOSecurityChecklist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-css.php
More file actions
35 lines (30 loc) · 954 Bytes
/
custom-css.php
File metadata and controls
35 lines (30 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
h2,
.filter-bar ul li:hover,
nav li.active a,
nav li a:hover,
.checklist li .body a,
a {
color: <?php echo get_theme_mod( 'main_color', '#591694' ); ?>;
}
.filter-bar ul::after,
.newsletter #mc_embed_signup #mc-embedded-subscribe,
.mobile-menu,
.filter-bar ul li.filler,
.formkit-submit {
background-color: <?php echo get_theme_mod( 'main_color', '#591694' ); ?> !important;
}
*::-moz-selection {
background-color: <?php echo get_theme_mod( 'main_color', '#591694' ); ?> !important;
}
*::selection {
background-color: <?php echo get_theme_mod( 'main_color', '#591694' ); ?> !important;
}
.social li a:hover svg path,
.mobile-menu .social-mob li a:hover svg path {
fill: <?php echo get_theme_mod( 'main_color', '#591694' ); ?> ;
}
.checklist li .header .check.checked:hover circle,
.checklist li .header .check.checked circle,
.checklist li .header .check.checked path {
stroke: <?php echo get_theme_mod( 'main_color', '#591694' ); ?> ;
}