User:Dreadflopp/MMO.css: Difference between revisions

From Step Mods | Change The Game
No edit summary
No edit summary
 
(32 intermediate revisions by the same user not shown)
Line 1: Line 1:
<source lang="css" line>
<source lang="css" line>
body
{
}


h1 {
h1 {
    color:#ACD1E9;
background: #292B2C;
    text-align:center;
        font-weight: bold;
text-transform: uppercase;
color: #6D95AB;
text-align:center;
overflow: hidden;
padding-top: 4px;
}
}


h2 {
h2 {
    color:#06A2CB;
background: #292B2C;
    border-style:solid;
        font-weight: bold;
    border-bottom-width:1px;
text-transform: uppercase;
    border-color:#E9E9E9;
/* color: #6D95AB;*/
    overflow: hidden;
color: #ccc;
text-align:center;
overflow: hidden;
padding-top: 4px;
}
}


h3 {
h3 {
    color:#ACD1E9;
color: #ec8b3d;
    border-style:solid;
font-size: 1.85em;
    border-bottom-width:1px;
font-weight: normal;
    border-color:#E9E9E9;
text-align: left;
    overflow: hidden;
border-style: none;
 
}
}


h4 {
h4 {
    color:#ACD1E9;
color: #ccc;
    border-style:solid;
/* color: #8DABBC;*/
    border-bottom-width:1px;
font-size: 1.5em;
    border-color:#E9E9E9;
font-weight: bold;
    overflow: hidden;
border-style: solid;
    }
border-bottom: 2px solid #5D7480;
}


h5 {
h5 {
    color:#ACD1E9;
/* color: #9BC1D5;*/
    overflow: hidden;
color: #ccc;
    margin-bottom:30px;
font-size: 1.3em;
    }
font-weight: bold;
text-decoration: none;
padding-top: 20px;
}
 
 
hr {
border: 0;
color: #DDDDDD;
background-color: #507F90;
height: 2px;
width: 100%;
text-align: left;
}
 
pre {
margin-left:40px;
width: 80%;
}
.rule {
color:#46ec3d;
}
</source>
</source>

Latest revision as of 12:18, October 13, 2014

<source lang="css" line>

h1 {
	background: #292B2C;
        font-weight: bold;
	text-transform: uppercase;
	color: #6D95AB;
	text-align:center;
	overflow: hidden;
	padding-top: 4px;
}

h2 {
	background: #292B2C;
        font-weight: bold;
	text-transform: uppercase;
/*	color: #6D95AB;*/
	color: #ccc;
	text-align:center;
	overflow: hidden;
	padding-top: 4px;
}

h3 {
	color: #ec8b3d;
	font-size: 1.85em;
	font-weight: normal;
	text-align: left;
	border-style: none;

}

h4 {
	color: #ccc;
/*	color: #8DABBC;*/
	font-size: 1.5em;
	font-weight: bold;
	border-style: solid;
	border-bottom: 2px solid #5D7480;
}

h5 {
/*	color: #9BC1D5;*/
	color: #ccc;
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	padding-top: 20px;
}


hr {
	border: 0;
	color: #DDDDDD;
	background-color: #507F90;
	height: 2px;
	width: 100%;
	text-align: left;
}

pre {
	margin-left:40px;
	width: 80%;
}
.rule {
	color:#46ec3d; 
	
}
</source>