File size: 2,426 Bytes
1813a37
 
 
 
a417977
 
 
 
1813a37
 
a417977
1813a37
 
 
 
 
 
 
 
 
 
a417977
1813a37
 
 
 
 
 
 
 
 
 
 
 
a417977
 
 
 
 
1813a37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a417977
1813a37
 
 
 
 
a417977
1813a37
 
 
 
 
a417977
 
 
 
 
 
 
 
 
 
 
1813a37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a417977
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1982de5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.spinner {
  margin: 5rem auto;
}

.listWrapper {
  margin-bottom: 1.5rem;
}

.list {
  display: grid;
  grid-template-columns: 10fr 3fr 1fr 3fr 0.5fr;

  list-style-type: none;
  //margin: 0;
  //margin-bottom: 1.5rem;
  background: var(--block-bg-color);
  border: .0625rem solid var(--border-color);
  border-radius: 0.75rem;
  width: 100%;
  padding: 0;
  overflow: hidden;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;

  > li {
    display: contents;
    list-style: none;
    padding: 0;
    margin: 0;

    > span {
      font-weight: var(--topic-font-weight);
      font-size: var(--topic-font-size);
      padding: var(--topic-gap);
      height: 100%;
      display: flex;
      align-items: center;
      background-color: transparent;
      transition: background-color .2s ease-in-out;

      a {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: var(--topic-title-lines);
        -webkit-box-orient: vertical;
        //margin-left: var(--topic-gap);
        color: var(--link-color);
        text-decoration: none;
        font-size: var(--topic-title-font-size);
        font-weight: var(--topic-title-font-weight);

        &:hover {
          color: var(--text-hover-secondary);
        }
      }
    }

    &:nth-child(even) {
      > span {
        background-color: var(--block-even-bg-color);
      }
    }

    &.highlight {
      > span {
        background-color: var(--block-highlighted-bg-color);
      }
    }
  }
}

.clipboard {
  cursor: pointer;
  color: var(--link-color);
  margin-right: 0.25rem;
}

.trash {
  cursor: pointer;
  color: var(--text-danger);
}

.head {
  > span {
    text-transform: uppercase;
  }
}

.generationSettings {
  max-width: 400px;
  //display: grid;
  //grid-template-columns: 1fr 0;
  //
  //
  //@media screen and (min-width: 600px) {
  //  grid-template-columns: 1fr 1fr;
  //}
}

.import {
  background: var(--input-bg-color);
  overflow: hidden;
  border: 0.0625rem solid var(--input-border-color);
  border-radius: 0.25rem;
  margin-bottom: 0.9375rem;

  textarea {
    display: block;
    width: 100%;
    height: 10rem;
    max-width: 100%;
    min-width: 100%;
    border: 0 solid rgba(0, 0, 0, 0);
    padding: 0.625rem;
    background-color: rgba(0, 0, 0, 0);
    color: var(--input-text-color);
    min-height: 5rem;
    resize: vertical;

    &::placeholder {
      color: var(--input-placeholder-color);
    }
  }
}