Skip to content

Commit fab2925

Browse files
committed
style(boxes): attempt to fix colours (#13)
1 parent 397a13e commit fab2925

File tree

2 files changed

+40
-24
lines changed

2 files changed

+40
-24
lines changed

css/boxes.css

Lines changed: 36 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
.card {
2-
--card-bg: #9dd0e2;
3-
--text-color: black;
4-
--card-border: #9dd0e2;
5-
6-
background-color: var(--card-bg);
7-
color: var(--text-color);
8-
border: 2px solid var(--card-border);
1+
.card-blue {
2+
background-color: #9dd0e2;
3+
color: black;
4+
border: 2px solid #9dd0e2;
95
border-radius: 8px;
106
padding: 1.2em 1em 0.5em 1em;
117
margin: 1.5em 0;
@@ -14,25 +10,45 @@
1410
}
1511

1612
.card-open {
17-
--card-bg: #201b45;
18-
--text-color: white;
19-
--card-border: black;
13+
background-color: #201b45;
14+
color: white;
15+
border: 2px solid black;
16+
border-radius: 8px;
17+
padding: 1.2em 1em 0.5em 1em;
18+
margin: 1.5em 0;
19+
position: relative;
20+
box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
2021
}
2122

2223
.card-review {
23-
--card-bg: #82c1b1;
24-
--text-color: white;
25-
--card-border: #68b47a;
24+
background-color: #82c1b1;
25+
color: white;
26+
border: 2px solid #68b47a;
27+
border-radius: 8px;
28+
padding: 1.2em 1em 0.5em 1em;
29+
margin: 1.5em 0;
30+
position: relative;
31+
box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
2632
}
2733

2834
.card-reproduce {
29-
--card-bg: #d56e46;
30-
--text-color: white;
31-
--card-border: #d16136;
35+
background-color: #d56e46;
36+
color: white;
37+
border: 2px solid #d16136;
38+
border-radius: 8px;
39+
padding: 1.2em 1em 0.5em 1em;
40+
margin: 1.5em 0;
41+
position: relative;
42+
box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
3243
}
3344

3445
.card-reuse {
35-
--card-bg: #8265f8;
36-
--text-color: white;
37-
--card-border: #7352f7;
46+
background-color: #8265f8;
47+
color: white;
48+
border: 2px solid #7352f7;
49+
border-radius: 8px;
50+
padding: 1.2em 1em 0.5em 1em;
51+
margin: 1.5em 0;
52+
position: relative;
53+
box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
3854
}

pages/research/jos_mri.qmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,25 @@ The four JOS-MRI badges are:
3636

3737
![](jos_mri_resources/badges.png){alt-text="JOS-MRI badges"}
3838

39-
::: {.card .card-open}
39+
::: {.card-open}
4040

4141
**Open Research Object:** Models submitted for assessment are available in a public repository and distributed under standard open licences. This badge applies to all relevant artefacts, including code, data, models developed in commercial software, and supplementary materials such as scripts.
4242

4343
:::
4444

45-
::: {.card .card-review}
45+
::: {.card-review}
4646

4747
**Research Object Reviewed:** Models are reviewed by the JOS-MRI Editors and their teams to confirm that the artefacts are functional and accurately reflect the implementation details reported in the associated paper.
4848

4949
:::
5050

51-
::: {.card .card-reproduce}
51+
::: {.card-reproduce}
5252

5353
**Results Reproduced:** The submitted models are executed and tested by the JOS-MRI Editors and their teams to verify that the reported results can be successfully reproduced.
5454

5555
:::
5656

57-
::: {.card .card-reuse}
57+
::: {.card-reuse}
5858

5959
**Research Object Reusable:** The submitted artefacts are evaluated for their reusability, using established frameworks such as Sharing Tools and Artefacts for Reusable Simulations (STARS), STrengthening the Reporting of Empirical Simulation Studies (STRESS), Overview, Design concepts and Details (ODD) protocol for agent-based models and System Dynamics Model Documentation and Assessment (SDM-Doc).
6060

0 commit comments

Comments
 (0)