custom-style.css 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .repository {
  2. /* Since we have no footer bar, reduce padding */
  3. padding-bottom: 15px;
  4. }
  5. .repository .repo-header {
  6. padding: 0.5rem 0;
  7. }
  8. .repository .header-grid > * {
  9. padding-top: 1rem;
  10. padding-bottom: 0.5rem;
  11. }
  12. .repository .header-grid {
  13. align-items: flex-end;
  14. align-items: last baseline;
  15. }
  16. .repository .mega-octicon {
  17. margin-right: 0.5rem;
  18. }
  19. .repository .header-grid .fork-flag {
  20. margin-left: 0;
  21. }
  22. /* These rules are copied here to pull them out of their nesting. */
  23. .repo-description {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. }
  28. #repo-desc {
  29. font-size: 1.2em;
  30. }
  31. /* Undo gitea's repurposing of left/right for attached objects (e.g. buttons) */
  32. .ui.left.attached, .ui.right.attached, .ui.left.action {
  33. float: unset;
  34. }
  35. .clone-grid {
  36. display: grid;
  37. grid-template-columns: 0fr 1fr;
  38. grid-column-gap: 1em;
  39. align-items: center;
  40. text-align: right;
  41. }