Jump to content

Template:Maorwy/main.css: Difference between revisions

From Ditzy Wiki
Maorwy (talk | contribs)
mNo edit summary
Maorwy (talk | contribs)
mNo edit summary
Line 11: Line 11:


.strip {
.strip {
     width: 100%;
     width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
     font-weight: 500;
     font-weight: 500;
     padding: 50px;
     padding: 50px;

Revision as of 22:54, 13 March 2026

.bg {
	position: fixed;
	left: 0; top: 0; right: 0; bottom: 0;
	background-color: #301940;
}

.centered {
    width: 948px;
    margin: auto;
}

.strip {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    padding: 50px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.strip * {
    filter: drop-shadow(0 1px 1px var(--background));    
}

.sauce {
	position: relative;
	color: #e6e3ed;
}

a:link {
    color: #fe71eb;
    text-decoration: none;
}

a:visited {
    color: #c83cb8;
}

a:hover {
    text-decoration: underline;
}

h2 {
	color: #ccc;
}

aside {
    background-color: #5d3590 !important;
    border-radius: 15px;
}

aside * {
    background-color: #0000 !important;
    color: #e6e3ed;
}

@keyframes zoomie {
	0% {scale: 1;}
	50% {scale: 1.1;}
	100% {scale: 1;}
}
.zoomie img  {
	width: 600px;
	animation: zoomie 2.5s ease-in-out infinite;
}