Spaces:
Running
Running
elibrowne
commited on
Commit
·
d225a9c
1
Parent(s):
a07df95
Updating second page
Browse files- study.html +11 -1
- study_style.css +45 -0
study.html
CHANGED
@@ -8,11 +8,21 @@
|
|
8 |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
9 |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
10 |
<!-- Normal CSS -->
|
11 |
-
<link rel="stylesheet" href="
|
12 |
</head>
|
13 |
<body>
|
|
|
14 |
<h1 style="font-weight: bold;"> 🔍 Legal Retriever Evaluation Study </h1>
|
15 |
<hr />
|
16 |
<p> We really appreciate your participation in our study, which will help us better understand how to best evaluate and use legal retrieval models. </p>
|
17 |
</body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
</html>
|
|
|
8 |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
9 |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
10 |
<!-- Normal CSS -->
|
11 |
+
<link rel="stylesheet" href="study_style.css" />
|
12 |
</head>
|
13 |
<body>
|
14 |
+
<div class="alert alert-success" id="username"> </div>
|
15 |
<h1 style="font-weight: bold;"> 🔍 Legal Retriever Evaluation Study </h1>
|
16 |
<hr />
|
17 |
<p> We really appreciate your participation in our study, which will help us better understand how to best evaluate and use legal retrieval models. </p>
|
18 |
</body>
|
19 |
+
<script>
|
20 |
+
var url = window.location.href;
|
21 |
+
var username = url.split("?id=");
|
22 |
+
if (username.length == 1) {
|
23 |
+
window.location.href = "index.html";
|
24 |
+
} else {
|
25 |
+
document.getElementById("username").innerHTML = "Logged in as " + username[1] + "!";
|
26 |
+
}
|
27 |
+
</script>
|
28 |
</html>
|
study_style.css
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
padding: 2rem;
|
3 |
+
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
+
margin-left: 10%;
|
5 |
+
margin-right: 10%;
|
6 |
+
}
|
7 |
+
|
8 |
+
h1 {
|
9 |
+
font-size: 32px;
|
10 |
+
margin-top: 0;
|
11 |
+
color: rgb(15,99,218);
|
12 |
+
}
|
13 |
+
|
14 |
+
p {
|
15 |
+
color: rgb(107, 114, 128);
|
16 |
+
font-size: 20px;
|
17 |
+
margin-bottom: 10px;
|
18 |
+
margin-top: 5px;
|
19 |
+
}
|
20 |
+
|
21 |
+
li {
|
22 |
+
font-size: rgb(141, 148, 161);
|
23 |
+
color: gray;
|
24 |
+
}
|
25 |
+
|
26 |
+
input {
|
27 |
+
padding: 8px;
|
28 |
+
width: 100%;
|
29 |
+
border: 1px solid gray;
|
30 |
+
border-radius: 8px;
|
31 |
+
font-size: 20px;
|
32 |
+
}
|
33 |
+
|
34 |
+
.card {
|
35 |
+
max-width: 720px;
|
36 |
+
margin: 0 auto;
|
37 |
+
padding: 16px;
|
38 |
+
/*border: 2px solid rgb(15,99,218);*/
|
39 |
+
border: 1px solid gray;
|
40 |
+
border-radius: 16px;
|
41 |
+
}
|
42 |
+
|
43 |
+
.card p:last-child {
|
44 |
+
margin-bottom: 0;
|
45 |
+
}
|