Spaces:
Running
Running
File size: 1,215 Bytes
919a2fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
.neon-button {
padding: 8px 16px;
font-size: 14px;
color: #fff;
background: none;
border: 2px solid #645fce;
border-radius: 5px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1.5px;
transition: color 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.neon-button:hover {
color: #645fce;
border-color: #645fce;
box-shadow: 0 0 8px #645fce, 0 0 16px #645fce;
}
/* Tablets (portrait and landscape) */
@media (min-width: 600px) and (max-width: 899px) {
.neon-button {
padding: 10px 20px;
font-size: 16px;
}
}
/* Mobile phones (portrait) */
@media (max-width: 599px) {
.neon-button {
padding: 12px 24px;
font-size: 18px;
}
}
/* Laptops and larger screens */
@media (min-width: 900px) {
.neon-button {
padding: 8px 16px;
font-size: 14px;
}
}
/* Mobile phones (portrait) */
@media (max-width: 599px) {
.neon-button {
padding: 4px 8px;
font-size: 13px;
}
}
/* Laptops and larger screens */
@media (min-width: 900px) {
.neon-button {
padding: 8px 16px;
font-size: 14px;
}
}
|