riku
2024-11-14 00a96d6881dd10ae7d3c4f5437bfceaabe677723
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
.page-header {
  background: linear-gradient(var(--td-primary-color-7), var(--td-primary-color-3));
  min-height: 30vh;
  padding-bottom: var(--td-spacer);
}
 
.flex-h {
  display: flex;
  justify-content: space-between;
}
 
.page-header .title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 8px;
}
 
.page-header .tag {
  font-size: 12px;
  color: var(--td-text-color-secondary);
  margin-top: 8px;
  /* background-color: red; */
  text-align: end;
}
 
.page-header .btn {
  border-radius: 20px;
  line-height: 20px;
  background: linear-gradient(to right, #6EF0A5, #62EAD2);
  padding: 8px 4px;
  text-align: center;
  color: white;
  width: 30vw;
  margin-top: 50px;
}
 
.page-header .file {
  width: 40vw;
  height: 25vh;
  border-radius: var(--td-border-radius);
  background-color: var(--td-bg-color);
}
 
.p-cell{
  position: relative;
  padding: 8px;
}
 
.p-title{
  font-weight: 600;
  font-size: 14px;
  color: #5CE395;
}
 
.p-content{
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}
 
.p-tag{
  color: var(--td-text-color-secondary);
  font-size: 10px;
}
 
.p-btn{
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  background: linear-gradient(to right, #6EF0A5, #62EAD2);
  padding: 4px 16px;
  color: white;
  font-size: 14px;
}