PluginProbe
CoolClock / trunk
CoolClock vtrunk
4.3.8 trunk 0.1 2.0 2.9.8 3.0 3.1 3.2 3.3 4.0 4.1 4.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7
coolclock / css / coolclock.css

coolclock.css in CoolClock trunk, at css/coolclock.css

18 lines 544 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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