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

No edit summary
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 192: 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;
}
}


Line 203: Line 209:


.feature-image img {
.feature-image img {
   width: 120px;
   width: 100%;
   height: auto;
   height: auto;
}
}
Line 219: Line 225:
   font-size: 13px;
   font-size: 13px;
   color: #444;
   color: #444;
}
.feature-box {
  border: 1px solid #aac;
  background-color: #f9fff6;
  padding: 15px;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.feature-box-title {
  background-color: #b8d8be;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #8ebf82;
}
.feature-grid {
  display: flex;
  justify-content: space-between;
}
.feature-item {
  background-color: #f0e8ff;
  padding: 15px;
  width: 180px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 0 5px #ccc;
}
.feature-image {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid #ddd;
}
.feature-image img {
  width: 120px;
  height: auto;
}
.feature-name a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
}
}