Changeset - 05198edf8286
[Not reviewed]
0 1 0
Bradley Kuhn (bkuhn) - 9 years ago 2015-03-05 19:35:15
bkuhn@ebb.org
Make FAQ entry done in dt look better with CSS.

This is accomplished by three key changes:

* use em rather than px sizes, so that font changes are accomodated.

* Add a margin to the dt.

* center the text in the dt's rather than right align.
1 file changed with 5 insertions and 5 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/conservancy.css
Show inline comments
...
 
@@ -331,17 +331,17 @@ dl {
 
    border: 3px double #ccc;
 
    padding: 0.5em;
 
}
 
dt {
 
    float: left;
 
    clear: left;
 
    width: 100px;
 
    text-align: right;
 
    width: 10em;
 
    margin: 0em 1em 0.5em 0.5em;
 
    text-align: center;
 
    font-weight: bold;
 
    color: green; }
 
dt:after {
 
    content: ":";
 
}
 
dd {
 
    margin: 0 0 0 110px;
 
    padding: 0 0 0.5em 0;
 
}
...
 
\ No newline at end of file
 
    margin: 0 0 2em 11em;
 
}
0 comments (0 inline, 0 general)