View difference between Paste ID: wZqASLSu and uNiwWa4M
SHOW: | | - or go back to the newest paste.
1-
#page-header[data-arts-theme-text="light"] .menu > li > a {
1+
/* Top level items */
2-
  color: #fff !important; /* normal state */
2+
#page-header .menu > li > a {
3
  color: red; /* normal state */
4
}
5-
#page-header[data-arts-theme-text="light"] .menu > li > a:hover {
5+
6-
  color: #eee !important; /* hover state */
6+
#page-header .menu > li > a:hover {
7
  color: blue; /* hover state */
8
}
9-
#page-header[data-arts-theme-text="light"] .header__burger-line {
9+
10-
  background-color: var(--color-dark-2) !important; /* optionally restore burger button color */
10+
/* Submenu items */
11
#page-header .menu > li li > a {
12
  color: green; /* normal state */
13
}
14
15
#page-header .menu> li li > a:hover {
16
  color: gray; /* hover state */
17
  border-color: gray;
18
}
19
20
/* Top level items [sticky] */
21
#page-header.header_sticky .menu > li > a {
22
  color: yellow; /* normal state */
23
}
24
25
#page-header.header_sticky .menu > li > a:hover {
26
  color: magenta; /* hover state */
27
}
28
29
/* Submenu items [sticky] */
30
#page-header.header_sticky .menu > li li > a {
31
  color: mediumblue; /* normal state */
32
}
33
34
#page-header.header_sticky .menu> li li > a:hover {
35
  color: aquamarine; /* hover state */
36
  border-color: aquamarine;
37
}
38