You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
.bottomJ {
|
|
padding: 12px 24px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: #001f3f;
|
|
background-color: #fff;
|
|
border: 2px solid #9ec2e6;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.bottomJ:hover {
|
|
transform: translateY(2px);
|
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
|
|
}
|