User:Dat Hack3r/styles.css: Difference between revisions

From Our World of Text Wiki
Jump to navigation Jump to search
(Added color rule for hatnotes.)
(Just in case the box looks squished and ugly.)
 
(19 intermediate revisions by the same user not shown)
Line 8: Line 8:
}
}


.hatnote {
.red-border-box {
color: #D3D3D3;
border-radius: 100px;
border: 10px solid #ff0000;
background-color: #000000;
padding: 80px;
width: calc(100% - 2 * 10px - 2 * 80px);
min-height: 50vh;
}
}


a:link {
.red-border-box .hatnote {
  color: #00FF00;
color: #808080;
}
}


a:visited {
.red-border-box a:link {
  color: #FFFF00;
color: #00FF00;
}
 
.red-border-box a:visited {
color: #008800;
}
}

Latest revision as of 11:44, 19 November 2024

p, .mw-headline {
	color: #FF0000;
	font-family: monospace, monospace;
}

p {
	font-size: 1.1em;
}

.red-border-box {
	border-radius: 100px;
	border: 10px solid #ff0000;
	background-color: #000000;
	padding: 80px;
	width: calc(100% - 2 * 10px - 2 * 80px);
	min-height: 50vh;
}

.red-border-box .hatnote {
	color: #808080;
}

.red-border-box a:link {
	color: #00FF00;
}

.red-border-box a:visited {
	color: #008800;
}