Changes

Jump to navigation Jump to search
481 bytes added ,  13:24, 17 December 2020
no edit summary
Line 674: Line 674:  
a:hover {
 
a:hover {
 
   color: var(--main-secondary-color);
 
   color: var(--main-secondary-color);
 +
}
 +
 +
ul {
 +
  list-style: none; /* Remove default bullets */
 +
}
 +
 +
ul li::before {
 +
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
 +
  color: var(--main-primary-color); /* Change the color */
 +
  font-weight: bold; /* If you want it to be bold */
 +
  display: inline-block; /* Needed to add space between the bullet and the text */
 +
  width: 1em; /* Also needed for space (tweak if needed) */
 +
  margin-left: -1em; /* Also needed for space (tweak if needed) */
 
}
 
}

Navigation menu