Riku
2024-08-12 7c3c82d429f86358142adceb080e8922f6a18aa0
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
.prosta-wrap {
  background-color: var(--td-bg-color-fade);
  /* border-radius: var(--td-border-radius); */
  border-bottom-left-radius: var(--td-border-radius);
  border-bottom-right-radius: var(--td-border-radius);
  box-shadow: var(--td-shadow-4);
  padding: var(--td-spacer);
  /* margin-top: var(--td-spacer); */
  color: var(--td-text-color-primary);
}
 
.prosta-abstract {
  margin-top: var(--td-spacer);
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-primary);
}
 
.prosta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
 
.prosta-index {
  display: inline-block;
  /* background-color: var(--td-warning-color-6); */
  color: var(--td-error-color);
  text-align: center;
  margin-right: 4px;
  font-size: var(--td-font-size-base);
  font-style: italic;
  font-weight: 600;
}
.prosta-index::after {
  content: '.';
}
 
.prosta-title {
  font-size: var(--td-font-size-base);
  font-weight: 600;
}
 
.prosta-num {
  text-align: right;
  font-size: var(--td-font-size-s);
}