Next.js template
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.

page.css 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. section {
  2. font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3. font-size: 14px;
  4. line-height: 24px;
  5. padding: 48px 20px;
  6. margin: 0 auto;
  7. max-width: 600px;
  8. color: #333;
  9. }
  10. section h2 {
  11. font-weight: 900;
  12. font-size: 32px;
  13. line-height: 1;
  14. margin: 0 0 4px;
  15. display: inline-block;
  16. vertical-align: top;
  17. }
  18. section p {
  19. margin: 1em 0;
  20. }
  21. section a {
  22. text-decoration: none;
  23. color: #1ea7fd;
  24. }
  25. section ul {
  26. padding-left: 30px;
  27. margin: 1em 0;
  28. }
  29. section li {
  30. margin-bottom: 8px;
  31. }
  32. section .tip {
  33. display: inline-block;
  34. border-radius: 1em;
  35. font-size: 11px;
  36. line-height: 12px;
  37. font-weight: 700;
  38. background: #e7fdd8;
  39. color: #66bf3c;
  40. padding: 4px 12px;
  41. margin-right: 10px;
  42. vertical-align: top;
  43. }
  44. section .tip-wrapper {
  45. font-size: 13px;
  46. line-height: 20px;
  47. margin-top: 40px;
  48. margin-bottom: 40px;
  49. }
  50. section .tip-wrapper svg {
  51. display: inline-block;
  52. height: 12px;
  53. width: 12px;
  54. margin-right: 4px;
  55. vertical-align: top;
  56. margin-top: 3px;
  57. }
  58. section .tip-wrapper svg path {
  59. fill: #1ea7fd;
  60. }