| 1 |
.coolclock-container { |
| 2 |
max-width: 100%; |
| 3 |
display: flex; /* flex, not supported in IE9 and older */ |
| 4 |
flex-direction: column; |
| 5 |
justify-content: space-evenly; /* center child elements vertically, distributed evenly over larger space (if set with height) */ |
| 6 |
align-items: center /* center child elements horizontally */ |
| 7 |
} |
| 8 |
|
| 9 |
.coolclock-container canvas { |
| 10 |
display: block; |
| 11 |
margin: 0 auto; /* center horizontally on IE9 and older */ |
| 12 |
position: relative; /* needed for clock position offset to work */ |
| 13 |
} |
| 14 |
|
| 15 |
.coolclock-subtext { |
| 16 |
text-align: center |
| 17 |
} |
| 18 |
|