Jump to content

Template:Maorwy/main.css: Difference between revisions

From Ditzy Wiki
Maorwy (talk | contribs)
m Maorwy moved page Template:Maorwy/main.css to User:Maorwy.css without leaving a redirect
Maorwy (talk | contribs)
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
*:not(.NonOpaque){
    opacity: 1;
}
.bg {
.bg {
position: fixed;
position: fixed;
left: 0; top: 0; right: 0; bottom: 0;
left: 0; top: 0; right: 0; bottom: 0;
background-color: #34173c
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 #301940);   
}
}


.sauce {
.sauce {
position: relative;
position: relative;
color: #fff
color: #e6e3ed;
    font-size: medium;
}
}


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


a:visited {
a:visited {
     color: #5f739e;
     color: #c83cb8;
}
}


Line 32: Line 49:


aside {
aside {
     background-color: #472b80 !important;
     background-color: #5d3590 !important;
     border-radius: 15px;
     border-radius: 15px;
}
}
Line 38: Line 55:
aside * {
aside * {
     background-color: #0000 !important;
     background-color: #0000 !important;
     color: #fff;
     color: #e6e3ed;
}
}



Latest revision as of 20:57, 15 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 #301940);    
}

.sauce {
	position: relative;
	color: #e6e3ed;
    font-size: medium;
}

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