blob: 52a042ebcc8c670c91a2f97ccb4427f9a3a96260 [file] [log] [blame]
Alexb2129542021-11-23 15:49:42 -06001<style>
2 .bc-wrap {
3 display: table;
4 position: relative;
5 margin: 7px 0;
6 height: 60px;
7 }
8 .bc-container {
9 display: table-cell;
10 width: 100%;
11 height: 100%;
12 padding-left: 15px;
13 }
14 .bc {
15 display: table;
16 height: 100%;
17 width: 100%;
18 border-bottom: 2px solid black;
19 }
20 .bccol {
21 position: relative;
22 vertical-align: bottom;
23 display: table-cell;
24 height: 100%;
25 }
26 .bcbar {
27 position: relative;
28 height: 0;
29 transition: height 0.5s 2s;
30 width: 25px;
31 margin: auto;
32 background-color: #358;
33 }
34 .bcfooter {
35 position: absolute;
36 text-align: center;
37 width: 100%;
38 top: 53px;
39 font-size: 10px;
40 }
41 .bctimecol {
42 position: absolute;
43 top: 0;
44 height: 100%;
45 width: 100%;
46 }
47 .bctime {
48 height: 15px;
49 vertical-align: middle;
50 position: relative;
51 }
52 .bctime:after {
53 border-bottom: 1px dotted black;
54 content: "";
55 position: absolute;
56 width: 100%;
57 left: 0;
58 top: 0em;
59 }
60 .bctimetext {
61 position: absolute;
62 top: -8px;
63 z-index: 1;
64 background: white;
65 padding-right: 5px;
66 color: #4d4d4d;
67 font-size: 8px;
68 font-family: 'Avenir Medium';
69 }
70 .red-bar {
71 background-color: darkred;
72 }
73 .green-bar {
74 background-color: green;
75 }
76</style>