mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-06-20 07:29:01 +00:00
20 lines
347 B
HTML
20 lines
347 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
input {
|
|
width: 200px;
|
|
height: 5px;
|
|
outline: 1px dotted black;
|
|
color: white;
|
|
/* Disable baseline alignment, so that our y-position isn't influenced by the
|
|
* choice of font inside of input: */
|
|
vertical-align: top;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="time">
|
|
</body>
|
|
</html>
|