blob: f3181cea5093a9cfa6112321e233f0339cc05547 (
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
|
.project {
max-width: 600px;
}
.project .project-head {
display: flex;
flex-direction: row;
gap: 12px;
}
.project-head .project-labels {
display: flex;
flex-direction: row;
align-items: center;
}
.project-head .project-labels p::after {
content: ",";
margin-right: 6px;
}
.project-head .project-labels p:first-child::before {
content: "(";
margin: 0;
}
.project-head .project-labels p:last-child::after {
content: ")";
margin: 0;
}
.project-links {
display: flex;
flex-direction: row;
align-items: center;
}
.project-links a::after {
content: "|";
margin: 0 6px;
cursor: none;
}
.project-links a:last-child::after {
content: none;
margin: 0;
}
.project-separator {
border: 1px solid black;
}
|