stab-crashes/style.css

70 строки
910 B
CSS
Исходник Обычный вид История

2016-06-01 17:03:27 +03:00
table {
border-collapse: collapse;
}
th, td {
padding: 8px;
padding-top: 40px;
padding-bottom: 40px;
}
th {
border-bottom: 2px solid #ddd;
font-weight: bold;
}
td {
border-top: 1px solid #ddd;
}
.resolved {
text-decoration: line-through;
}
text {
font: 10px sans-serif;
}
.axis text {
font: 10px sans-serif;
}
2016-06-01 17:03:27 +03:00
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltip-dialog {
visibility: hidden;
width: 1220px;
border: 1px solid black;
text-align: center;
background-color: white;
border-radius: 6px;
padding: 10px 0;
position: absolute;
z-index: 1;
top: 100%;
}
.tooltip:hover .tooltip-dialog {
visibility: visible;
}