This repository was archived by the owner on Oct 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +31
-10
lines changed Expand file tree Collapse file tree 2 files changed +31
-10
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,29 @@ Example:
7474< /script>
7575` ` `
7676
77+ ** Colors**
78+
79+ set ` a` link colors set ` --primary` & ` --primary-dark` in ` :root`
80+
81+ * ` --primary` is used default link color
82+
83+ * ` --primary-dark` is used when link:hover
84+
85+ Example:
86+
87+ ` ` ` css
88+ ...
89+
90+
91+ :root {
92+ --primary: # 0f5d9c;
93+ --pirmary-dark: # 0a4677;
94+ }
95+
96+
97+ ...
98+ ` ` `
99+
77100< br>
78101
79102# 🛠️ Development
Original file line number Diff line number Diff line change 1010 * Licensed under Apache License, Version 2.0
1111 */
1212
13- : root {
14- --primary : # 0f5d9c ;
15- --pirmary-dark : # 0a4677 ;
16- --pirmary-light : # 348bd3 ;
17- }
18-
1913# customFooter {
2014 border-top : 1px solid # e5e5e5 ;
2115 padding-top : 2rem ;
2923 float : right;
3024}
3125
26+ # customFooter .copyright a {
27+ padding-left : 5px ;
28+ }
29+
3230# customFooter a {
33- color : var (--primary ) !important ;
34- text-decoration : underline dotted !important ;
31+ color : var (--primary , # 42b983 ) ;
32+ text-decoration : underline dotted;
3533}
3634
3735# customFooter a : hover {
38- color : var (--primary-dark ) !important ;
39- text-decoration : underline !important ;
36+ color : var (--primary-dark , # 2c7554 ) ;
37+ text-decoration : underline;
4038}
You can’t perform that action at this time.
0 commit comments