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

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