website

#astro#js#html#css

git clone https://git.pyrossh.dev/website

木 Personal website of pyrossh. Built with astrojs, shiki, vite.


assets/css/workers/issues-index.css
df4fd17 1
  .issues {
df4fd17 2
    margin-top: 0.5rem;
df4fd17 3
  }
df4fd17 4
df4fd17 5
  .summary {
df4fd17 6
    display: flex;
df4fd17 7
    flex-wrap: wrap;
df4fd17 8
    gap: 0.5rem;
df4fd17 9
    align-items: baseline;
df4fd17 10
    padding: 0.5rem;
df4fd17 11
    background: var(--color-box-bg);
df4fd17 12
    color: var(--color-text);
df4fd17 13
    font-size: 0.95rem;
df4fd17 14
  }
df4fd17 15
df4fd17 16
  .empty {
df4fd17 17
    margin-top: 0.5rem;
df4fd17 18
    padding: 0.5rem;
df4fd17 19
    background: var(--color-box-bg);
df4fd17 20
    color: var(--color-text);
df4fd17 21
  }
df4fd17 22
df4fd17 23
  .new-issue {
df4fd17 24
    display: grid;
df4fd17 25
    gap: 0.5rem;
df4fd17 26
    margin: 0.5rem 0;
df4fd17 27
    padding: 0.5rem;
df4fd17 28
    background: var(--color-box-bg);
df4fd17 29
df4fd17 30
    input,
ec165f1 31
textarea {
df4fd17 32
      width: 100%;
df4fd17 33
      border: 1px solid var(--color-text);
df4fd17 34
      background: var(--color-body-bg);
df4fd17 35
      color: var(--color-text);
df4fd17 36
      padding: 0.35rem 0.5rem;
df4fd17 37
      font: inherit;
df4fd17 38
    }
df4fd17 39
ec165f1 40
textarea {
df4fd17 41
      min-height: 6rem;
df4fd17 42
      resize: vertical;
df4fd17 43
    }
df4fd17 44
ec165f1 45
button {
df4fd17 46
      border: 1px solid var(--color-text);
df4fd17 47
      background: var(--color-box-bg);
df4fd17 48
      color: var(--color-link);
df4fd17 49
      padding: 0.35rem 0.75rem;
df4fd17 50
      font: inherit;
df4fd17 51
      cursor: pointer;
df4fd17 52
    }
df4fd17 53
  }
df4fd17 54
df4fd17 55
  .form-row {
df4fd17 56
    display: grid;
60e980e 57
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
df4fd17 58
    gap: 0.5rem;
df4fd17 59
  }