Tips & Tricks

Addtions to style.css

Black border in tables

table { /* Black border in tables */
  border-collapse: collapse;
  border: 1px solid black;
}

table td { /* Black border in tables */
  border: 1px solid black;
}

Black border around field sets

fieldset { /* Black border arround field sets */
    font-family: sans-serif;
    border: 1px solid black; /*#1F497D;*/
    background: #F5F5F5; /*lightgray;/*#ddd;*/
    border-radius: 5px;
    padding: 15px;
}
fieldset legend { /* Black border around field sets */
    background: #F5F5F5; /*1F497D;*/
    color: black; /*#fff;*/
    padding: 5px 10px ;
    /*font-size: 32px;*/
    border-radius: 5px;
    box-shadow: 0 0 0 1px black; /*#ddd;*/
    margin-left: 10px;
}