| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- window {
- background-color: #000000;
- }
- #clock-label {
- font-family: "Inter", sans-serif;
- font-size: 64px;
- font-weight: bold;
- color: white;
- margin-bottom: 8px;
- }
- #date-label {
- font-family: "Inter", sans-serif;
- font-size: 16px;
- color: #888888;
- margin-bottom: 32px;
- }
- #body {
- font-family: "Inter", sans-serif;
- }
- #input-label {
- color: rgba(0,0,0,0);
- font-size: 1px;
- }
- entry {
- font-family: "Inter", sans-serif;
- font-size: 12px;
- background-color: #222222;
- color: white;
- border: 2px solid #444444;
- border-radius: 4px;
- padding: 2px 12px;
- min-width: 180px;
- }
- entry:focus {
- border-color: #666666;
- box-shadow: none;
- outline: none;
- }
- #unlock-button {
- color: rgba(0,0,0,0);
- background: rgba(0,0,0,0);
- border: none;
- box-shadow: none;
- font-size: 1px;
- }
- #error-label {
- color: rgba(0,0,0,0);
- font-size: 1px;
- margin: 0;
- }
|