style.css 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. window {
  2. background-color: #323232;
  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: 14px;
  27. background-color: #222222;
  28. color: white;
  29. border: 2px solid #444444;
  30. border-radius: 4px;
  31. padding: 8px 16px;
  32. min-width: 250px;
  33. }
  34. entry:focus {
  35. border-color: #4c7899;
  36. }
  37. #unlock-button {
  38. color: rgba(0,0,0,0);
  39. background: rgba(0,0,0,0);
  40. border: none;
  41. box-shadow: none;
  42. font-size: 1px;
  43. }
  44. #error-label {
  45. font-family: "Inter", sans-serif;
  46. font-size: 13px;
  47. color: #900000;
  48. margin-top: 8px;
  49. }