# coolclock/4.3.5/css/coolclock.css

CoolClock, version 4.3.5. 18 lines.

- Page: https://pluginprobe.com/plugins/coolclock/4.3.5/code/css/coolclock.css
- Raw: https://pluginprobe.com/plugins/coolclock/4.3.5/raw/css/coolclock.css
- Modified: 2021-08-25T15:53:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/coolclock/4.3.5/code/css/coolclock.css#L10-L20`.

```css
.coolclock-container {
	max-width: 100%;
	display: flex; /* flex, not supported in IE9 and older */
	flex-direction: column;
	justify-content: space-evenly; /* center child elements vertically, distributed evenly over larger space (if set with height) */
	align-items: center /* center child elements horizontally */
}

.coolclock-container canvas {
	display: block;
	margin: 0 auto; /* center horizontally on IE9 and older */
    position: relative; /* needed for clock position offset to work */
}

.coolclock-subtext {
	text-align: center
}

```
