No edit summary
No edit summary
Line 1: Line 1:
/* outer box */
/* Inherit same theme as .index-card-image and label */
.intro-box {
.intro-card {
   display: inline-flex;         /* makes it horizontal */
  background: rgba(10, 10, 10, 0.75);
   align-items: center;
  border: 1px solid rgba(120, 165, 255, 0.2);
   gap: 10px;
  border-radius: 12px;
   background: #ED8136;
  padding: 18px 28px;
   padding: 14px 26px;
   display: inline-block;
   border-radius: 14px;
  transition: all .25s ease;
   text-align: center;
}
 
.intro-card:hover {
   border-color: #78A5FF;
   background: #1c1e25;
   transform: translateY(-3px);
}
 
/* Text style matching .index-card-label */
.intro-card-label {
  color: #FAB243;
   font-size: 18px;
   font-weight: 600;
   font-weight: 600;
   font-size: 1rem;
   letter-spacing: 0.5px;
   margin-bottom: 16px;
   text-transform: uppercase;
}
}


/* link inside */
.intro-card-label a {
.intro-box a {
   color: inherit;
   color: #fff;
   text-decoration: none;
   text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* little blue icon like in your first screenshot */
.intro-box a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #369EA7;
  border-radius: 4px;
  display: inline-block;
}
}


/* hover */
.intro-card-label a:hover {
.intro-box:hover {
   text-decoration: underline;
   background: #FAB243;
}
}

Revision as of 21:33, 5 November 2025

/* Inherit same theme as .index-card-image and label */
.intro-card {
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(120, 165, 255, 0.2);
  border-radius: 12px;
  padding: 18px 28px;
  display: inline-block;
  transition: all .25s ease;
  text-align: center;
}

.intro-card:hover {
  border-color: #78A5FF;
  background: #1c1e25;
  transform: translateY(-3px);
}

/* Text style matching .index-card-label */
.intro-card-label {
  color: #FAB243;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.intro-card-label a {
  color: inherit;
  text-decoration: none;
}

.intro-card-label a:hover {
  text-decoration: underline;
}