Alex | b212954 | 2021-11-23 15:49:42 -0600 | [diff] [blame] | 1 | <style> |
| 2 | .bc-wrap { |
| 3 | display: table; |
| 4 | position: relative; |
Alex | 30380a4 | 2021-12-20 16:11:20 -0600 | [diff] [blame^] | 5 | margin: 12px 0; |
Alex | b212954 | 2021-11-23 15:49:42 -0600 | [diff] [blame] | 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; |
Alex | 30380a4 | 2021-12-20 16:11:20 -0600 | [diff] [blame^] | 30 | width: 27px; |
Alex | b212954 | 2021-11-23 15:49:42 -0600 | [diff] [blame] | 31 | margin: auto; |
| 32 | background-color: #358; |
| 33 | } |
Alex | 30380a4 | 2021-12-20 16:11:20 -0600 | [diff] [blame^] | 34 | .bcheader { |
| 35 | position: absolute; |
| 36 | text-align: center; |
| 37 | width: 100%; |
| 38 | bottom: 53px; |
| 39 | font-size: 11px; |
| 40 | } |
Alex | b212954 | 2021-11-23 15:49:42 -0600 | [diff] [blame] | 41 | .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> |