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 607B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }
  16. .heading {
  17. padding: 2em;
  18. text-align: center;
  19. }
  20. .button-container {
  21. text-align: center;
  22. }
  23. .button {
  24. background: #486f48;
  25. border: 2px solid #5d8c56;
  26. border-radius: 5px;
  27. color: #efefef;
  28. cursor: pointer;
  29. font-size: 24px;
  30. padding: 10px 20px;
  31. }
  32. .button[disabled] {
  33. background: transparent;
  34. border: none;
  35. opacity: 0.5;
  36. }
  37. #result {
  38. font-size: 56px;
  39. padding: 2.5em;
  40. }