blob: f56955bc2d7e55213084048dfdeb191cc5ebdea7 (
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
62
63
64
65
66
67
68
69
|
.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;
text-decoration: none;
border: 1px solid var(--border-color);
padding: 0.2rem 0.6rem;
border-radius: 4px;
background: #e8e8e4;
}
.project-actions a:hover {
background: #ddd;
}
@media (max-width: 768px) {
.project-item {
flex-direction: column;
align-items: flex-start;
}
.project-actions {
justify-content: flex-start;
}
}
|