Jump to content

Template:Maorwy/main.css: Difference between revisions

From OkayXairen Wiki
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:
position: relative;
position: relative;
color: #fff
color: #fff
}
a:link {
    color: #86a4e7;
    text-decoration: none;
}
a:visited {
    color: #5f739e;
}
a:hover {
    text-decoration: underline;
}
}


h2 {
h2 {
color: #ccc;
color: #ccc;
}
aside {
    background-color: #472b80 !important;
    border-radius: 15px;
}
aside * {
    background-color: #0000 !important;
    color: #fff;
}
}


@keyframes zoomie {
@keyframes zoomie {
0% {scale: 1;}
0% {scale: 1;}
50% {scale: 1.2;}
50% {scale: 1.1;}
100% {scale: 1;}
100% {scale: 1;}
}
}

Latest revision as of 22:12, 11 March 2026

*:not(.NonOpaque){
    opacity: 1;
}

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

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

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

a:visited {
    color: #5f739e;
}

a:hover {
    text-decoration: underline;
}

h2 {
	color: #ccc;
}

aside {
    background-color: #472b80 !important;
    border-radius: 15px;
}

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

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