Second frontend, written in Next.JS + Typescript.
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.

52 lines
621 B

4 years ago
  1. .heading2Xl {
  2. font-size: 2.5rem;
  3. line-height: 1.2;
  4. font-weight: 800;
  5. letter-spacing: -0.05rem;
  6. margin: 1rem 0;
  7. }
  8. .headingXl {
  9. font-size: 2rem;
  10. line-height: 1.3;
  11. font-weight: 800;
  12. letter-spacing: -0.05rem;
  13. margin: 1rem 0;
  14. }
  15. .headingLg {
  16. font-size: 1.5rem;
  17. line-height: 1.4;
  18. margin: 1rem 0;
  19. }
  20. .headingMd {
  21. font-size: 1.2rem;
  22. line-height: 1.5;
  23. }
  24. .borderCircle {
  25. border-radius: 9999px;
  26. }
  27. .colorInherit {
  28. color: inherit;
  29. }
  30. .padding1px {
  31. padding-top: 1px;
  32. }
  33. .list {
  34. list-style: none;
  35. padding: 0;
  36. margin: 0;
  37. }
  38. .listItem {
  39. margin: 0 0 1.25rem;
  40. }
  41. .lightText {
  42. color: #666;
  43. }