blob: d95341195f32015a10c46cd8dae0d1f1347092eb (
plain)
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
|
.projects-category {
margin-bottom: 3.8rem;
}
.project-list {
list-style: none;
padding: 0;
margin: 0;
}
.project-item {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1.2rem;
padding: 1.2rem 0;
border-bottom: 1px solid var(--border-color);
}
.project-item:last-child {
border-bottom: none;
}
.project-item h3 {
margin: 0 0 0.4rem 0;
font-size: 1.2rem;
}
.project-item p {
margin: 0;
}
.project-meta {
flex: 1;
}
.project-actions {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
justify-content: flex-end;
flex-shrink: 0;
}
.project-actions a {
font-size: 0.85rem;
padding: 0.2rem 0.6rem;
}
@media (max-width: 768px) {
.project-item {
flex-direction: column;
align-items: flex-start;
}
.project-actions {
justify-content: flex-start;
}
}
|