Template:Stakeholder count widget/styles.css: Difference between revisions

No edit summary
No edit summary
Line 35: Line 35:
         border-color 0.15s ease,
         border-color 0.15s ease,
         background-color 0.2s ease;
         background-color 0.2s ease;
}
/* Hover effect: subtle lift + grey fill */
.stakeholder-card:hover {
    border-color: #000;
    background-color: #f2f2f2;
    transform: translateY(-1px);
}
/* Active/pressed state */
.stakeholder-card:active {
    transform: translateY(0);
}
}


Line 55: Line 43:
}
}


/* Link styling ("See startups →") */
/* Link styling ("See startups →")  
.stakeholder-card a {
.stakeholder-card a {
     font-size: 0.9em;
     font-size: 0.9em;
     font-weight: 500;
     font-weight: 500;
     color: #b30000;              /* light red to match your theme */
     color: #b30000;               
     text-decoration: none;
     text-decoration: none;
}
}
Line 66: Line 54:
     text-decoration: underline;
     text-decoration: underline;
}
}
*/