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
No edit summary
No edit summary
Line 15: Line 15:
display: inline-block;
display: inline-block;
background: transparent;
background: transparent;
color: #00f2ff;
border: 0.5px solid #ffffff;
border: 0.5px solid #ffffff;
border-radius: 12px;
border-radius: 12px;

Revision as of 19:50, 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: 75%;
	margin: 0 auto;
	margin-top: var(--space-xs);
}

.DSRedirect {
    display: inline-block;
    background: transparent;
    border: 0.5px solid #ffffff;
    border-radius: 12px;
    width: calc(100% / 3);
    padding: var(--space-xs);
    font-size: var(--font-size-medium);
    text-shadow: #ffffff 0px 0px 1px;
    transition: all 0.3s ease-in-out;
}

.DSRedirect:hover {
    background: #16181d;
}