blob: 66385be6342c208642d085a633f866d35af2578b [file] [log] [blame]
Alex41485522019-04-12 17:26:18 -05001<style>
2 body {
3 font-family: "Open Sans", Arial, Helvetica, sans-serif;
4 font-size: 90% !important;
5 }
6 h5 {padding-left: 1em; margin: 0.6em}
7 .note {font-style: italic; font-weight: normal; padding-left: 1em; margin: 0.2em; font-size: 0.7em; color: gray;}
8 /* Common */
9 .header {
10 display:block;
11 }
12
13 .label {float: left; font-size: 0.7em; color: Black; line-height: 17px; padding-left: 10px;}
14 .text {float: left; font-size: 0.8em; color: Navy; padding-left: 2px;}
15 .date {float: right;}
16
17 .smallgreytext {float: right; font-size: 0.5em; color: gray;}
18
19 /* Bar */
20 .bar{
21 background: linear-gradient(to bottom, #126666 0%, #284753 77%);
22 width:100%;
23 overflow:hidden;
24 display: inline-block;
25 }
26 .bar .bar-item{
27 padding:8px 16px;
28 float:left;
29 width:auto;
30 border:none;
31 display:block;
32 outline:0;
33 color: White;
34 background-color: transparent;
35 }
36
37 .bar .bar-item:hover {
38 background-color: #328686;
39 }
40
41 .bar .bar-item.active {
42 background-color: #328686;
43 color: white;
44 }
45
46 .collapsable {
47 visibility: collapse;
48 display: none;
49 }
50
51 .collapsable.in {
52 visibility: visible;
53 display: table-row;
54 }
55
56 table {
57 border: 0 hidden;
58 table-layout: fixed;
59 width: 100%;
60 }
61
62 .table_header {
63 background-color: #284753;
64 color: wheat;
65 text-align: center;
66 font-family: "Open Sans", Arial, Helvetica, sans-serif;
67 }
68
69 /* Tooltip container */
70 .tooltip {
71 position: relative;
72 display: inline-block;
73 border-bottom: 1px dotted black;
74 }
75
Alexd0391d42019-05-21 18:48:55 -050076 .tooltip .tooltiptext, .tooltip .repoinfotext {
Alex41485522019-04-12 17:26:18 -050077 visibility: hidden;
78 background-color: black;
79 font-family: "Lucida Console", Monaco, monospace;
80 font-size: 0.5em;
81 width: auto;
82 color: #fff;
83 border-radius: 6px;
84 padding: 5px 5px;
85
86 /* Position the tooltip */
87 position: absolute;
88 z-index: 1;
89 }
90
Alexd0391d42019-05-21 18:48:55 -050091 .tooltip .repoinfotext {
92 right: 0%;
93 }
94
Alex41485522019-04-12 17:26:18 -050095 .tooltip:hover .tooltiptext {
96 visibility: visible;
97 }
98
Alexd0391d42019-05-21 18:48:55 -050099 .tooltip:hover .repoinfotext {
100 visibility: visible;
101 }
102
Alex41485522019-04-12 17:26:18 -0500103</style>