ReadmeEditor.uss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. :root {
  2. --link-color: blue;
  3. }
  4. .title
  5. {
  6. margin: -2px -6px 0px -15px;
  7. padding: 20px 6px 20px 22px;
  8. flex-direction: row;
  9. align-items: center;
  10. background-color: var(--unity-colors-inspector_titlebar-background);
  11. height: 139px;
  12. border-bottom-width: 1px;
  13. border-bottom-color: var(--unity-colors-inspector_titlebar-border);
  14. }
  15. .title__icon
  16. {
  17. max-width: 120px;
  18. max-height: 69px;
  19. }
  20. .title__text
  21. {
  22. margin-left: 25px;
  23. padding: 0px 0px 0px 0px;
  24. font-size: 26px;
  25. flex-shrink: 1;
  26. white-space: normal;
  27. overflow: hidden;
  28. }
  29. .section
  30. {
  31. align-items:flex-start;
  32. margin-bottom: 16px;
  33. }
  34. .section__header
  35. {
  36. font-size: 20px;
  37. white-space: normal;
  38. -unity-font-style: bold;
  39. }
  40. .section__body
  41. {
  42. font-size: 14px;
  43. white-space: normal;
  44. }
  45. .section__link
  46. {
  47. font-size: 14px;
  48. white-space: nowrap;
  49. overflow: hidden;
  50. border-bottom-width: 0px;
  51. margin-bottom: 0px;
  52. border-bottom-color: var(--link-color);
  53. color: var(--link-color);
  54. }
  55. .section__link:hover
  56. {
  57. border-bottom-width: 1px;
  58. margin-bottom: -1px;
  59. cursor: link;
  60. }
  61. .remove-readme-button
  62. {
  63. font-size: 13px;
  64. -unity-font-style: bold;
  65. margin: 1px 0px 1px 0px;
  66. }