codenothing/CSSTree

View on GitHub
demo/counter/css.css

Summary

Maintainability
Test Coverage
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    font: 14px Helvetica;
    color: #333;
    background: #f5f5f5;
    padding: 0;
    margin: 0;
    height: 100%;
    text-shadow: 0 1px 0 #eee;
}

h1 {
    width: 75%;
    line-height: 30px;
    margin: 20px auto 0;
    padding: 0;
    font-size: 18px;
}

textarea {
    display: block;
    width: 75%;
    height: 400px;
    margin: 0 auto 10px;
}

form {
    display: block;
    margin: 0 auto;
    width: 75%;
}

form input[type=text] {
    width: 100px;
}