mootools / website

MooTools Website - move fast and break things
https://mootools.net
45 stars 31 forks source link

aligment of listitems #147

Closed co3n closed 10 years ago

co3n commented 10 years ago

nested list items (ul> li > ul > li) are missing indentation check for example this page: http://mootools.net/core/docs/1.5.1/Request/Request

SergioCrisostomo commented 10 years ago

@co3n thank you for nice input! We will check it out and apply some other ideas soonish! cc @pietrogregorini

pietrogregorini commented 10 years ago

@SergioCrisostomo Let's correct in this way:

Change .docs .content ul li::after in .docs .content ul li::before

.docs .content ul li::before {
    content:'\e80c';
    color: #7d8aa5;
    position: absolute;
    left: -1em;
    font-family:"Entypo";
    font-size: 100%;
    margin: .2em .5em 0 0;
}
.docs .content ul li {
    margin:.5em 0 0 1em;
    position: relative;
}