Template:DSLogo/style.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) No edit summary |
||
| Line 9: | Line 9: | ||
width: fit-content; |
width: fit-content; |
||
margin: 0 auto; |
margin: 0 auto; |
||
} |
|||
.DSRedirect { |
|||
width: calc(1 / 3); |
|||
} |
} |
||
Revision as of 19:47, March 29, 2025
.DSRedirectWrapper {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
text-align: center;
gap: var(--space-sm);
width: fit-content;
margin: 0 auto;
}
.DSRedirect {
width: calc(1 / 3);
}
.DSRedirect {
display: inline-block;
background: transparent;
color: #ffffff;
border: 0.5px solid #ffffff;
border-radius: 12px;
padding: var(--space-xs);
margin: var(--space-xxs);
font-size: var(--font-size-medium);
text-shadow: #ffffff 0px 0px 1px;
transition: all 0.3s ease-in-out;
}
.DSRedirect:hover {
background: #16181d;
}