You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
897 B
CSS

/* Link Card */
.linkCard {
width: 200px;
height: 100px;
padding: 30px;
background-color: #1a1a1a;
}
/* Link Card H5 */
.linkCard h5 {
width: 100%;
padding-top: 12px;
font-family: NeonSans;
font-size: 12px;
color: #ff9d00;
text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00, 0 0 30px #ff9d00, 0 0 40px #ff9d00;
transition: text-shadow 0.2s linear;
}
/* Link Card H5 Hover */
.linkCard h5:hover {
text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00;
}
/* Link Card H5 First Child */
.linkCard h5:first-child {
padding-top: 0;
font-size: 18px;
color: #8c00ff;
text-shadow: 0 0 10px #8c00ff, 0 0 20px #8c00ff, 0 0 30px #8c00ff, 0 0 40px #8c00ff;
}
/* Link Card A */
.linkCard a {
color: #ff9d00;
}
/* Small Screens */
@media screen and (max-width: 779px) {
/* Legal Card H5 */
.linkCard h5 {
text-align: center;
}
}