the-glorious-startpage/css/clock.css
Gerome Matilla 84727755db
Cleanups (#20)
* centedbox css

* add font-weight to the css

* some cleanup
2020-06-10 14:47:04 +08:00

20 lines
410 B
CSS

#clock {
color: var(--base-color);
font-size: 11pt;
font-family: roboto-bold, sans-serif;
font-weight: 700;
/*Center lock*/
text-align: center;
position: relative;
top: 50%;
transform: translateY(-50%);
/*Make clock unselectable*/
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}