| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- window {
- background-color: #323232;
- }
- #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: 14px;
- background-color: #222222;
- color: white;
- border: 2px solid #444444;
- border-radius: 4px;
- padding: 8px 16px;
- min-width: 250px;
- }
- entry:focus {
- border-color: #4c7899;
- }
- #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: #900000;
- margin-top: 8px;
- }
|