2016-07-08 18:45:48 -06:00
|
|
|
.clockCircle {
|
2017-06-26 14:33:18 +02:00
|
|
|
margin: 0;
|
2016-09-08 15:51:58 -04:00
|
|
|
position: relative;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-size: 100%;
|
2016-07-08 18:45:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.clockFace {
|
2016-09-08 15:51:58 -04:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-07-08 18:45:48 -06:00
|
|
|
}
|
|
|
|
|
2016-09-08 15:57:25 -04:00
|
|
|
.clockFace::after {
|
2016-09-08 15:51:58 -04:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
margin: -3px 0 0 -3px;
|
|
|
|
background: white;
|
|
|
|
border-radius: 3px;
|
|
|
|
content: "";
|
|
|
|
display: block;
|
2016-07-08 18:45:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.clockHour {
|
2016-09-08 15:51:58 -04:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -2px 0 -2px -25%; /* numbers much match negative length & thickness */
|
|
|
|
padding: 2px 0 2px 25%; /* indicator length & thickness */
|
|
|
|
background: white;
|
|
|
|
-webkit-transform-origin: 100% 50%;
|
|
|
|
-ms-transform-origin: 100% 50%;
|
|
|
|
transform-origin: 100% 50%;
|
|
|
|
border-radius: 3px 0 0 3px;
|
2016-07-08 18:45:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.clockMinute {
|
2016-09-08 15:51:58 -04:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -35% -2px 0; /* numbers must match negative length & thickness */
|
|
|
|
padding: 35% 2px 0; /* indicator length & thickness */
|
|
|
|
background: white;
|
|
|
|
-webkit-transform-origin: 50% 100%;
|
|
|
|
-ms-transform-origin: 50% 100%;
|
|
|
|
transform-origin: 50% 100%;
|
|
|
|
border-radius: 3px 0 0 3px;
|
2016-07-08 18:45:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.clockSecond {
|
2016-09-08 15:51:58 -04:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -38% -1px 0 0; /* numbers must match negative length & thickness */
|
|
|
|
padding: 38% 1px 0 0; /* indicator length & thickness */
|
2016-09-08 15:57:25 -04:00
|
|
|
background: #888;
|
2016-09-08 15:51:58 -04:00
|
|
|
-webkit-transform-origin: 50% 100%;
|
|
|
|
-ms-transform-origin: 50% 100%;
|
|
|
|
transform-origin: 50% 100%;
|
2016-07-09 05:11:50 -06:00
|
|
|
}
|