Template:Element/style.css: Difference between revisions

From Soul's Remnant Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
.default a {
.default {
color: rgb(255,255,255);
color: rgb(255,255,255);
border: #000;
border: #000;
}
}


.Normal a {
.Normal {
color: rgb(255, 255, 255); /* WHITE */
color: rgb(255, 255, 255); /* WHITE */
}
}


.Lightning a {
.Lightning {
color: rgb(255, 255, 0); /* YELLOW */
color: rgb(255, 255, 0); /* YELLOW */
}
}


.Ghost a {
.Ghost {
color: rgb(112, 38, 112); /* Purple */
color: rgb(112, 38, 112); /* Purple */
}
}


.Metal a {
.Metal {
color: rgb(112, 38, 112); /* Grey */
color: rgb(112, 38, 112); /* Grey */
}
}


.Water a {
.Water {
color: rgb(0, 0, 255); /* Grey */
color: rgb(0, 0, 255); /* Grey */
}
}

Revision as of 04:19, 1 November 2025

.default {
	color: rgb(255,255,255);
	border: #000;
}

.Normal {
	color: rgb(255, 255, 255); /* WHITE */
}

.Lightning {
	color: rgb(255, 255, 0); /* YELLOW */
}

.Ghost {
	color: rgb(112, 38, 112); /* Purple */
}

.Metal {
	color: rgb(112, 38, 112); /* Grey */
}

.Water {
	color: rgb(0, 0, 255); /* Grey */
}

.Fire {
color: white;
  text-shadow:
    -2px 1px 0 #ff4d1a,
    -2px 0px 0 #ff4d1a,
    -1px 2px 0 #ff4d1a,
     2px -1px 0 #ff4d1a,
     2px 0px 0 #ff4d1a,
     1px -2px 0 #ff4d1a,
     0px -2px 0 #ff4d1a,
    -1px -2px 0 #ff4d1a,
     2px 1px 0 #ff4d1a,
     0px 2px 0 #ff4d1a,
     1px 2px 0 #ff4d1a;
}


.default:hover a {
	color: #90D5FF;
}