You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 911B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. * {
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. background: #333333;
  8. color: #efefef;
  9. font-family: Helvetica Neue;
  10. line-height: 1.5;
  11. }
  12. .container {
  13. margin: auto;
  14. max-width: 768px;
  15. padding: 20px;
  16. }
  17. .heading {
  18. padding: 2em;
  19. text-align: center;
  20. }
  21. .button-container {
  22. text-align: center;
  23. }
  24. .button {
  25. background: #486f48;
  26. border: 2px solid #5d8c56;
  27. border-radius: 5px;
  28. color: #efefef;
  29. cursor: pointer;
  30. font-size: 24px;
  31. padding: 10px 20px;
  32. }
  33. .button[disabled] {
  34. background: transparent;
  35. border: none;
  36. opacity: 0.5;
  37. }
  38. #result:not(.empty) {
  39. background: #666666;
  40. border-radius: 10px;
  41. font-size: 56px;
  42. margin-top: 2em;
  43. padding: 1em;
  44. }
  45. @media (max-width: 768px) {
  46. .button {
  47. font-size: 18px;
  48. width: 100%;
  49. }
  50. .heading {
  51. padding: 1em;
  52. }
  53. #result:not(.empty) {
  54. font-size: 32px;
  55. margin-top: 1em;
  56. padding: 0.5em;
  57. }
  58. }