mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
49 lines
946 B
CSS
49 lines
946 B
CSS
.modalHead {
|
|
text-align: center;
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
padding-top: 0px;
|
|
margin-top: 0px;
|
|
padding-bottom: 20px;
|
|
letter-spacing: 3px;
|
|
}
|
|
|
|
.donateLogoContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.donateLogoContainer img {
|
|
max-width: 100px;
|
|
margin: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.sidebarLinks > a {
|
|
display: block;
|
|
text-align: center;
|
|
color: black;
|
|
font-size: 108%;
|
|
padding: 14px;
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
text-decoration: none;
|
|
color: var(--bright-color);
|
|
transition: width 0.5s, height 0.5s, ease-in 0.5s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sidebarLinks a.active {
|
|
border: 0.5px solid var(--text-color);
|
|
color: white;
|
|
text-shadow: 2px 2px 8px black;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sidebarLinks a:hover:not(.active) {
|
|
background-color: var(--text-color);
|
|
color: black;
|
|
font-weight: bold;
|
|
text-shadow: 2px 2px 8px black;
|
|
transition: width 0.5s, height 0.5s, ease-out 0.5s;
|
|
}
|