blob: 8ee1cbfc446aa987873654b22f78dd0e1c5d515b [file] [log] [blame]
Alexb2129542021-11-23 15:49:42 -06001<style>
2 .bc-wrap {
3 display: table;
4 position: relative;
Alex30380a42021-12-20 16:11:20 -06005 margin: 12px 0;
Alexb2129542021-11-23 15:49:42 -06006 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;
Alex30380a42021-12-20 16:11:20 -060030 width: 27px;
Alexb2129542021-11-23 15:49:42 -060031 margin: auto;
32 background-color: #358;
33 }
Alex30380a42021-12-20 16:11:20 -060034 .bcheader {
35 position: absolute;
36 text-align: center;
37 width: 100%;
38 bottom: 53px;
39 font-size: 11px;
40 }
Alexb2129542021-11-23 15:49:42 -060041 .bcfooter {
42 position: absolute;
43 text-align: center;
44 width: 100%;
45 top: 53px;
46 font-size: 10px;
47 }
48 .bctimecol {
49 position: absolute;
50 top: 0;
51 height: 100%;
52 width: 100%;
53 }
54 .bctime {
55 height: 15px;
56 vertical-align: middle;
57 position: relative;
58 }
59 .bctime:after {
60 border-bottom: 1px dotted black;
61 content: "";
62 position: absolute;
63 width: 100%;
64 left: 0;
65 top: 0em;
66 }
67 .bctimetext {
68 position: absolute;
69 top: -8px;
70 z-index: 1;
71 background: white;
72 padding-right: 5px;
73 color: #4d4d4d;
74 font-size: 8px;
75 font-family: 'Avenir Medium';
76 }
77 .red-bar {
78 background-color: darkred;
79 }
80 .green-bar {
81 background-color: green;
82 }
83</style>