No edit summary
No edit summary
Line 42: Line 42:


.card {
.card {
   border-radius: 20px;
   box-sizing: border-box;
   padding: 10px;
  width: 190px;
   box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  height: 254px;
   // background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  background: rgba(217, 217, 217, 0.58);
   border: 1px solid white;
   box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
   justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
}
}


.card-content {
.card:hover {
  // background: rgb(5, 6, 45);
   border: 1px solid black;
   border-radius: 17px;
   transform: scale(1.05);
   width: 100%;
  height: 100%;
}
}

Revision as of 17:59, 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;
}

.card {
  box-sizing: border-box;
  width: 190px;
  height: 254px;
  background: rgba(217, 217, 217, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: bolder;
  color: black;
}

.card:hover {
  border: 1px solid black;
  transform: scale(1.05);
}