hedera-web/js/hedera/report.css

99 lines
1.4 KiB
CSS
Raw Normal View History

2015-10-21 23:34:35 +00:00
2022-11-28 08:51:31 +00:00
@font-face {
2022-05-21 21:31:56 +00:00
font-family: 'Roboto';
src: url('roboto.ttf') format('truetype');
2015-10-21 23:34:35 +00:00
}
2022-11-28 08:51:31 +00:00
@media print {
body {
2015-10-21 23:34:35 +00:00
-webkit-print-color-adjust: exact;
}
2022-11-28 08:51:31 +00:00
.sheet {
2015-10-21 23:34:35 +00:00
width: 100%;
page-break-after: always;
}
2022-11-28 08:51:31 +00:00
#topbar {
2015-10-21 23:34:35 +00:00
display: none;
}
}
2022-11-28 08:51:31 +00:00
@media screen {
body {
2015-10-21 23:34:35 +00:00
background-color: #EEE;
padding-top: 3.9em;
2015-10-21 23:34:35 +00:00
}
2022-11-28 08:51:31 +00:00
.sheet {
2015-10-21 23:34:35 +00:00
width: 210mm;
height: 297mm;
background-color: white;
margin: 10mm auto;
box-shadow: 0 1mm 1mm #CCC;
2015-10-28 07:19:17 +00:00
padding: 20mm;
2015-10-21 23:34:35 +00:00
}
2022-11-28 08:51:31 +00:00
#topbar {
2015-10-21 23:42:52 +00:00
position: fixed;
top: 0;
left: 0;
right: 0;
height: 4em;
2015-10-21 23:42:52 +00:00
background-color: #009688;
z-index: 100;
box-shadow: 0 .1em .1em #AAA;
}
2022-11-28 08:51:31 +00:00
#topbar > button {
float: right;
background-color: transparent;
2015-10-21 23:42:52 +00:00
color: white;
2015-11-05 07:30:19 +00:00
padding: .4em;
2015-10-21 23:42:52 +00:00
z-index: 100;
border: none;
cursor: pointer;
2022-11-11 15:17:20 +00:00
font-size: 1.15rem;
height: 100%;
padding: 0 1em;
2015-10-21 23:42:52 +00:00
}
2022-11-28 08:51:31 +00:00
#topbar > button:hover {
background-color: rgba(1, 1, 1, 0.2);
2015-10-21 23:34:35 +00:00
}
}
2022-11-28 08:51:31 +00:00
* {
font-family: 'Roboto';
2015-10-21 23:34:35 +00:00
}
2022-11-28 08:51:31 +00:00
body {
2015-10-21 23:34:35 +00:00
position: relative;
margin: 0;
width: 100%;
z-index: -2;
}
2022-11-28 08:51:31 +00:00
.sheet {
2015-10-21 23:34:35 +00:00
position: relative;
overflow: hidden;
box-sizing: padding-box;
/* page-break-after: always;*/
}
/* Widgets */
2022-11-28 08:51:31 +00:00
.htk-grid {
border-collapse: collapse;
width: 100%;
margin: 0 auto;
padding: 0;
}
2022-11-28 08:51:31 +00:00
.htk-grid > thead > tr {
border-bottom: 1px solid #333;
height: 10mm;
}
2022-11-28 08:51:31 +00:00
.htk-grid > thead th {
text-align: left;
font-weight: normal;
}
2022-11-28 08:51:31 +00:00
.htk-grid tr {
height: 2em;
}
.htk-grid > thead th,
2022-11-28 08:51:31 +00:00
.htk-grid td {
padding-left: 3mm;
}
2022-11-28 08:51:31 +00:00
.htk-grid .cell-spin {
text-align: right;
}