-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (48 loc) · 1.01 KB
/
styles.css
File metadata and controls
58 lines (48 loc) · 1.01 KB
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
/* Project cards */
.project-card {
padding: 0.75rem 0;
border-top: 1px solid var(--bs-border-color, #dee2e6);
}
.project-card h4 {
margin-top: 0;
margin-bottom: 0.5rem;
font-size: 1.1rem;
}
.project-card h4 a {
text-decoration: none;
}
.project-card p {
margin-bottom: 0.5rem;
}
.project-meta {
font-size: 0.85rem;
color: var(--bs-secondary-color, #6c757d);
margin-top: 0.5rem;
}
/* Contributors column on the right - wrapping grid */
.project-contributors {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
justify-content: flex-start;
}
.project-contributors a {
display: inline-block;
margin: 2px;
}
.project-contributors img {
border-radius: 50%;
display: block;
}
/* Publications list */
.publications-list .pub-item {
padding: 0.75rem 0;
border-top: 1px solid var(--bs-border-color, #dee2e6);
}
.publications-list .pub-item a {
text-decoration: none;
}
.publications-list .pub-item em {
color: var(--bs-secondary-color, #6c757d);
}