Files
openfreemap/website/src/styles/donate.css
2024-09-11 23:50:15 +02:00

79 lines
1.1 KiB
CSS

#support-plans-slider {
margin: 200px auto 150px;
@media (max-width: 550px) {
max-width: 98%;
margin: 170px auto 120px;
}
}
.plan-name {
font-weight: bold;
margin-bottom: 10px;
}
.plan-link {
display: block;
text-decoration: none;
color: white;
font-weight: bold;
letter-spacing: 0.05rem;
font-size: 15px;
border-radius: 20px;
padding: 6px 16px;
margin-top: 15px;
background: linear-gradient(32deg, #03a9f4, transparent) #f441a5;
transition: background-color 1s;
&:hover,
&:focus {
background-color: #fdb900;
}
}
/* noUI slider customizations */
.noUi-connects {
cursor: pointer;
}
.noUi-value {
line-height: 0;
margin-top: 32px;
font-size: 30px;
transition: font-size 0.3s ease;
cursor: pointer;
&.active {
font-size: 45px;
}
}
.noUi-marker-horizontal {
&.noUi-marker-large {
height: 5px;
}
&.noUi-marker {
margin-left: 0;
width: 1px;
}
}
.noUi-tooltip {
border-color: #ccc;
border-radius: 10px;
padding: 10px;
&.first {
left: 0;
transform: unset;
}
&.last {
right: 0;
left: unset;
transform: unset;
}
}