No edit summary
No edit summary
Line 19: Line 19:
   transition-timing-function: ease-in-out;
   transition-timing-function: ease-in-out;
   border-color: #87cecd;
   border-color: #87cecd;
}
#all-reports > ul > li:hover > a {
  color: #87cecd;
}
}


a.external:after {
a.external:after {
display: none !important;
display: none !important;
}
a:hover {
color: black !important;
}
}

Revision as of 15:49, 9 July 2023

/* CSS placed here will be applied to all skins */
#all-reports > ul {
  list-style-type: none;
  columns: 3;
}

#all-reports > ul > li {
  text-align: center;
  padding: 2px;
  border: 2px solid gray;
  border-radius: 5px;
  font-size: 20px;
  transition: 0.5s;
}

#all-reports > ul > li:hover {
  font-size: 25px;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
  border-color: #87cecd;
}

#all-reports > ul > li:hover > a {
  color: #87cecd;
}

a.external:after {
	display: none !important;
}