style.css 977 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. window {
  2. background-color: #000000;
  3. }
  4. #clock-label {
  5. font-family: "Inter", sans-serif;
  6. font-size: 64px;
  7. font-weight: bold;
  8. color: white;
  9. margin-bottom: 8px;
  10. }
  11. #date-label {
  12. font-family: "Inter", sans-serif;
  13. font-size: 16px;
  14. color: #888888;
  15. margin-bottom: 32px;
  16. }
  17. #body {
  18. font-family: "Inter", sans-serif;
  19. }
  20. #input-label {
  21. color: rgba(0,0,0,0);
  22. font-size: 1px;
  23. }
  24. entry {
  25. font-family: "Inter", sans-serif;
  26. font-size: 12px;
  27. background-color: #222222;
  28. color: white;
  29. border: 2px solid #444444;
  30. border-radius: 4px;
  31. padding: 2px 12px;
  32. min-width: 180px;
  33. }
  34. entry:focus {
  35. border-color: #666666;
  36. box-shadow: none;
  37. outline: none;
  38. }
  39. #unlock-button {
  40. color: rgba(0,0,0,0);
  41. background: rgba(0,0,0,0);
  42. border: none;
  43. box-shadow: none;
  44. font-size: 1px;
  45. }
  46. #error-label {
  47. font-family: "Inter", sans-serif;
  48. font-size: 13px;
  49. color: #ff4444;
  50. margin-top: 8px;
  51. }