Commit 52fa90f755c72398ad2d8739f367c014665ec5bd
1 parent
57d93074
Exists in
master
and in
28 other branches
ActionItem154: adding a default style for tables
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@1385 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
14 additions
and
0 deletions
Show diff stats
public/stylesheets/common.css
@@ -410,3 +410,17 @@ body.category4 #content h4, body.category4 #content h5, body.category4 #content | @@ -410,3 +410,17 @@ body.category4 #content h4, body.category4 #content h5, body.category4 #content | ||
410 | text-align: center; | 410 | text-align: center; |
411 | } | 411 | } |
412 | 412 | ||
413 | +/* tables */ | ||
414 | +table { | ||
415 | + border-collapse: collapse; | ||
416 | +} | ||
417 | +th, td { | ||
418 | + font-size: 14px; | ||
419 | + border: 1px solid #999999; | ||
420 | + padding: 2px; | ||
421 | +} | ||
422 | +th { | ||
423 | + background: #f0f0f0; | ||
424 | + color: black; | ||
425 | + font-weight: bold; | ||
426 | +} |