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.

35 lines
811 B
CSS

1 year ago
/* Navigation Card */
.navigationCard {
width: 40%;
padding: 30px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
background-color: #1a1a1a;
}
/* Navigation Card H5 A */
.navigationCard h5 a {
font-family: NeonSans;
font-size: 20px;
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;
}
/* Navigation Card H5 A Hover */
.navigationCard h5 a:hover {
text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00;
transition: text-shadow 0.2s linear;
}
/* Small Screens */
@media screen and (max-width: 1027px) {
/* Navigation Card */
.navigationCard {
width: 200px;
padding-top: 0;
justify-content: center;
}
}