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.

global.scss 749B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html, body {
  5. margin: 0;
  6. padding: 0;
  7. }
  8. body {
  9. font-family: verdana, sans-serif;
  10. }
  11. img {
  12. max-width: 100%;
  13. }
  14. blockquote {
  15. font-style: italic;
  16. margin: 0;
  17. }
  18. .error {
  19. color: #DD2222;
  20. }
  21. .container {
  22. display: flex;
  23. flex-direction: column;
  24. margin: auto;
  25. max-width: 800px;
  26. min-height: 100vh;
  27. padding: 15px;
  28. }
  29. .header__link {
  30. color: black;
  31. text-decoration: none;
  32. }
  33. .btn {
  34. background-color: rgb(40, 96, 144);
  35. border: 1px solid #222;
  36. border-radius: 5px;
  37. color: #ffffff;
  38. cursor: pointer;
  39. font-size: 20px;
  40. padding: 0.5em 0.5em;
  41. text-decoration: none;
  42. }
  43. .btn:hover {
  44. background-color: rgb(30, 85, 135);
  45. }
  46. .btn--small {
  47. font-size: 14px;
  48. }
  49. .center {
  50. text-align: center;
  51. }