User:Hishutup/OblivionGuide.css: Difference between revisions

From Step Mods | Change The Game
No edit summary
No edit summary
Line 1: Line 1:
<source lang="css" line>
<source lang="css" line>
body{
ul {
ul {
color: red;
    list-style: none;
}}
    padding:0;
    margin:0;
}
 
li {
    padding-left: 1em;
    text-indent: -.7em;
}
 
li:before {
    content: "• ";
    color: red; /* or whatever color you prefer */
}
</source>
</source>

Revision as of 08:50, September 12, 2014

<source lang="css" line>
ul {
    list-style: none;
    padding:0;
    margin:0;
}

li { 
    padding-left: 1em; 
    text-indent: -.7em;
}

li:before {
    content: "• ";
    color: red; /* or whatever color you prefer */
}
</source>