Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:DSLogo/style.css: Difference between revisions

Template page
Content deleted Content added
MMONTAGEe (talk | contribs)
No edit summary
No edit summary
Line 1: Line 1:
.DSRedirectWrapper {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
text-align: center;
gap: var(--space-sm);
}

.hatnote2 > * {
flex: 0 1 auto;
margin: 0 var(--space-sm);
}

.hatnote2 > :nth-child(2) {
align-self: center;
}

.DSRedirect {
.DSRedirect {
display: inline-block;
background: transparent;
background: transparent;
color: #ffffff;
color: #ffffff;
Line 6: Line 25:
padding: var(--space-xs);
padding: var(--space-xs);
margin: var(--space-xxs);
margin: var(--space-xxs);
font-size: var(--font-size-medium);
cursor: pointer;
font-size: 16px;
text-shadow: #ffffff 0px 0px 1px;
text-shadow: #ffffff 0px 0px 1px;
display: inline-block;
transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
}

Revision as of 19:41, March 29, 2025

.DSRedirectWrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	text-align: center;
	gap: var(--space-sm);
}

.hatnote2 > * {
	flex: 0 1 auto;
	margin: 0 var(--space-sm);
}

.hatnote2 > :nth-child(2) {
	align-self: center;
}

.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;
}