| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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 {
- font-family: "Inter", sans-serif;
- font-size: 13px;
- color: #ff4444;
- margin-top: 8px;
- }
|