Skip to content

Commit 02b007a

Browse files
tommvnbonfils
andauthoredAug 25, 2024··
More little modifications to the interface (#37)
* Update index.css * Update index.css * Interface design Several small edits to the interface design * Update start.js * New mods to the interface * Update index.css --------- Co-authored-by: nbonfils <nils.bonfils@gmail.com>
1 parent 94dc0db commit 02b007a

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed
 

‎src/index.css

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.c {
2-
/*max-width: 90em;*/
2+
max-width: 90em;
33
padding: 4em;
44
padding-top:1em;
55
}
@@ -43,6 +43,14 @@ h5 {
4343
.grassetto {
4444
font-weight: bold;
4545
font-size: 4em;
46+
margin-top:20px;
47+
margin-bottom:0px;
48+
}
49+
50+
.smaller {
51+
font-size: 2em;
52+
margin-top:0px;
53+
margin-bottom:60px;
4654
}
4755

4856

‎src/pages/start.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const Start = () => {
88
pageStyle(``);
99
return main(
1010
{ class: "c" },
11-
h1({ class: "center grassetto" }, "BiblioGraph (pre-release version)"),
11+
h1({ class: "center grassetto" }, "BiblioGraph"),
12+
h1({ class: "center smaller" }, "(pre-release version)"),
1213
div(
1314
{ style: "/*width:80em;*/" },
1415
p(
@@ -34,10 +35,9 @@ const Start = () => {
3435
},
3536
"Start here ⮕ ",
3637
),
37-
Link(
38+
a(
3839
{
39-
style: "display: block; text-align: center; margin: 2em",
40-
href: "/",
40+
style: "display: block; text-align: center; margin: 2em", href: "https://docs.google.com/document/d/1YOcy9B9VeLpCAfG-gDwSoSma8UUCehzokVoJ2wPJKmM/edit?usp=sharing", target: "_blank"
4141
},
4242
"Read the method paper >>",
4343
),

0 commit comments

Comments
 (0)
Please sign in to comment.