Template:Main Page/styles.css: Difference between revisions

No edit summary
Tag: Reverted
No edit summary
 
(43 intermediate revisions by the same user not shown)
Line 150: Line 150:
     margin-bottom: 2em;
     margin-bottom: 2em;
}
}




Line 164: Line 160:
.feature-box {
.feature-box {
   border: 1px solid #a2a9b1;
   border: 1px solid #a2a9b1;
   background-color: #90EE90;
   background-color: #f5fff5;
   margin-bottom: 20px;
   margin-bottom: 20px;
   padding: 10px;
   padding: 10px;
Line 188: Line 184:
.feature-item {
.feature-item {
   width: 19%;
   width: 19%;
   background-color: #fff;
   background-color: #f3e8fd;
   border: 1px solid #ddd;
   border: 1px solid #ddd;
   padding: 10px;
   padding: 10px;
Line 196: Line 192:
   font-family: sans-serif;
   font-family: sans-serif;
   border-radius: 5px;
   border-radius: 5px;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: scale(1.05);
  z-index: 10;
}
}


.feature-item img {
.feature-image {
  background-color: #fff;
  padding: 0px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ddd;
}
 
.feature-image img {
   width: 100%;
   width: 100%;
   height: auto;
   height: auto;
  max-height: 120px;
  object-fit: cover;
  margin-bottom: 6px;
  border-radius: 4px;
}
}


.feature-name {
.feature-name {
   font-weight: bold;
   font-weight: bold;
   margin: 4px 0;
   margin: 4px 0;
   font-size: 14px;
   font-size: 18px;
}
}


.feature-desc {
.feature-desc {
   font-size: 12px;
   font-size: 13px;
   color: #444;
   color: #444;
}
}