No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
Line 2: Line 2:


body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading {  
body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading {  
   display: none !important;  
   display: none;  
}
}



Revision as of 17:42, 16 July 2023

/* CSS placed here will be applied to all skins */

body.page-Main_Page.action-view h1.firstHeading, body.page-Main_Page.action-submit h1.firstHeading { 
  display: none; 
}

#all-reports > ul {
  list-style-type: none;
  columns: 3 auto;
}

#all-reports > ul > li {
  text-align: center;
  padding: 5px;
  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 > a { 
  color: gray;
}

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



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