Skip to content

Commit ccc98d4

Browse files
authored
Merge pull request #5 from aida-ugent/codex/create-github-website-for-vigilia-project-7428a2
fix: move Sass import to Jekyll _sass convention for Pages build
2 parents f97780d + 0741de7 commit ccc98d4

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

_sass/vigilia.scss

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
@import "minima";
2+
3+
:root {
4+
--vigilia-primary: #17365d;
5+
--vigilia-accent: #2f6db0;
6+
--vigilia-bg: #f6f8fb;
7+
}
8+
9+
.site-header {
10+
border-top: 6px solid var(--vigilia-primary);
11+
}
12+
13+
.page-content {
14+
background: var(--vigilia-bg);
15+
}
16+
17+
.wrapper {
18+
max-width: 1080px;
19+
}
20+
21+
h1, h2, h3 {
22+
color: var(--vigilia-primary);
23+
}
24+
25+
.people-grid {
26+
display: grid;
27+
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
28+
gap: 1rem;
29+
}
30+
31+
.person-card {
32+
background: #fff;
33+
border: 1px solid #dde5f0;
34+
border-radius: 10px;
35+
padding: 1rem;
36+
}
37+
38+
.person-photo {
39+
width: 100%;
40+
height: 220px;
41+
object-fit: cover;
42+
border-radius: 8px;
43+
margin-bottom: 0.75rem;
44+
background: #ebf0f8;
45+
}
46+
47+
.person-role {
48+
color: var(--vigilia-accent);
49+
font-weight: 700;
50+
margin-bottom: 0.35rem;
51+
}
52+
53+
.timeline {
54+
border-left: 4px solid var(--vigilia-accent);
55+
padding-left: 1rem;
56+
}
57+
58+
.timeline-item {
59+
background: #fff;
60+
border: 1px solid #dde5f0;
61+
border-radius: 10px;
62+
margin: 0 0 1rem 0;
63+
padding: 0.75rem 1rem;
64+
}
65+
66+
.pub-item, .empty-state {
67+
background: #fff;
68+
border: 1px solid #dde5f0;
69+
border-radius: 10px;
70+
padding: 1rem;
71+
margin-bottom: 1rem;
72+
}

assets/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
22
---
33

4+
@import "vigilia";
45
@import "css/style";

0 commit comments

Comments
 (0)