Commit 3013c6eeb3b6357e3e4621ef367d75c4c8a0b2bc

Authored by Gustavo
1 parent 580fbd37

Included css folder for bulletin

Showing 1 changed file with 36 additions and 0 deletions   Show diff stats
bulletin/static/css/estilo.css 0 → 100644
... ... @@ -0,0 +1,36 @@
  1 +body,html{
  2 + margin: 0;
  3 + padding: 0;
  4 + font-family: "Roboto", sans-serif;
  5 + font-size: 0.95em;
  6 + text-align: center;
  7 +}
  8 +
  9 +.axis path,
  10 +.axis line{
  11 + fill: none;
  12 + stroke: #000;
  13 + shape-rendering: crispEdges;
  14 +}
  15 +
  16 +.gridline path,
  17 +.gridline line{
  18 + fill: none;
  19 + stroke: #ccc;
  20 + shape-rendering: crispEdges;
  21 +}
  22 +
  23 +
  24 +.toolTip {
  25 + position: absolute;
  26 + display: none;
  27 + min-width: 20px;
  28 + height: 110px;
  29 + background: none repeat scroll 0 0 #fff;
  30 + border: 3px solid #ccc;
  31 + border-radius:10px;
  32 + padding: 10px;
  33 + text-align: center;
  34 + color: #000;
  35 + opacity: 0.93
  36 +}
... ...