-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight-theme.css
105 lines (83 loc) · 2.27 KB
/
light-theme.css
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* Stlyes to support a light theme
*/
.site-header {
background-color: black;
}
.site-footer, .site:before {
background-color: #DEDEDE;
}
.site-info {
background-color:black;
}
.widget-title,#secondary,.widget a {
color:black;
}
/* Remove the sublementary section - widget area below the content but before the site acknowledgements */
#supplementary {
display:none;
}
/* Change the colour of the sidebar to light grat - primarily in the narrow view */
#secondary {
background-color: #dedede; /* or transparent works too */
}
/* Fix up colours of the menu */
.primary-navigation ul ul a:hover, .primary-navigation ul ul li.focus > a {
background-color: #efefef;
}
.primary-navigation ul a:hover, .primary-navigation ul li.focus > a {
background-color: #efefef;
}
.primary-navigation a:hover, .primary-navigation li.focus > a {
background-color: #efefef;
}
.primary-navigation ul ul {
background-color: #f9f9f9;
}
.sub-menu a {
color:black;
}
.primary-navigation li:hover > a,
.primary-navigation li.focus > a {
background-color: #f9f9f9;
color: black;
}
/* Remove green highlighting if a top level item is the current item */
.site-navigation .current_page_item > a,
.site-navigation .current_page_ancestor > a,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-ancestor > a {
color: white;
}
/* Navigation */
.site-navigation li .current_page_item > a,
.site-navigation li .current_page_ancestor > a,
.site-navigation li .current-menu-item > a,
.site-navigation li .current-menu-ancestor > a {
color: black;
}
/* Support a widely-adopted but non-standard selector for text selection styles
* to achieve a better experience. See https://core.trac.wordpress.org/ticket/25898.
*/
::selection {
background: blue;
color: #fff;
text-shadow: none;
}
::-moz-selection {
background: blue;
color: #fff;
text-shadow: none;
}
/* Fix the main menu when in narrow width version - bheind toggle */
/*
nav#primary-navigation.site-navigation.primary-navigation.toggled-on.menu-item {
color:red;
}
*/
/* Improve appearance of the site description tagline */
.site-description {
color:black;
font-style: italic;
font-size: 13px;
margin-top: 2px;
}