Template:Element/style.css: Difference between revisions

From Soul's Remnant Wiki
Jump to navigation Jump to search
(Created page with ".default a { color: rgb(255,255,255); border: #000; } .Normal a { color: rgb(255, 255, 255); →‎WHITE: } .Lightning a { color: rgb(255, 255, 0); →‎YELLOW: } .Ghost a { color: rgb(112, 38, 112); →‎Purple: } .Metal a { color: rgb(112, 38, 112); →‎Grey: } .default:hover a { color: #90D5FF; }")
 
No edit summary
Line 18: Line 18:
.Metal a {
.Metal a {
color: rgb(112, 38, 112); /* Grey */
color: rgb(112, 38, 112); /* Grey */
}
.Water a {
color: rgb(0, 0, 255); /* Grey */
}
}



Revision as of 12:06, 26 October 2025

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

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

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

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

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

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

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