-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
142 lines (121 loc) · 3.69 KB
/
index.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Initiative for Collaborative Research</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Roboto+Slab:300|Roboto:300&display=swap"
rel="stylesheet"
/>
<style type="text/css">
html,
body {
height: 100%;
}
.font-sans {
font-family: Roboto, -apple-system, "Helvetica Neue", sans-serif;
}
.font-serif {
font-family: "Roboto Slab", serif;
}
.bg-blue-100 {
background-color: #f0f2fa;
}
.bg-blue-200 {
background-color: #d5ddf1;
}
.bg-blue-300 {
background-color: #bac7e8;
}
.bg-blue-400 {
background-color: #889ed8;
}
.bg-blue-500 {
background-color: #627ecb;
}
.bg-blue-600 {
background-color: #4769c2;
}
.bg-blue-700 {
background-color: #334f99;
}
.bg-blue-800 {
background-color: #273d77;
}
.bg-blue-900 {
background-color: #1b2a52;
}
.text-blue-100 {
color: #f0f2fa;
}
.text-blue-200 {
color: #d5ddf1;
}
.text-blue-300 {
color: #bac7e8;
}
.text-blue-400 {
color: #889ed8;
}
.text-blue-500 {
color: #627ecb;
}
.text-blue-600 {
color: #4769c2;
}
.text-blue-700 {
color: #334f99;
}
.text-blue-800 {
color: #273d77;
}
.text-blue-900 {
color: #1b2a52;
}
</style>
</head>
<body class="font-sans bg-blue-900">
<main class="flex flex-col sm:flex-row min-h-full">
<div
class="sm:w-1/3 sm:flex-none"
style="background-image: url('papers.jpg'); background-size: cover; background-repeat: repeat;"
></div>
<div class="sm:flex-1 bg-blue-900 text-white">
<div class="p-8 sm:p-16 sm:max-w-3xl">
<img src="logo.svg" />
<p class="mt-8 text-2xl font-light">
With the Initiative for Collaborative Research in Reproductive Health, we’re connecting
<span class="font-serif text-blue-300">journalists</span> and
<span class="font-serif text-blue-300">academics</span> in order to invest in
<span class="font-serif text-blue-300">evidence-based</span> news.
</p>
<p class="mt-8 text-lg font-light">
If you are a journalist and need research for your reproductive health article, email us
with a few brief sentences about your topic and what data or expertise you may need, and
we’ll work quickly to get you the information.
</p>
<p class="mt-8 text-2xl font-light">
<a href="mailto:[email protected]" class="underline">[email protected]</a>
</p>
</div>
<div class="flex flex-col sm:flex-row mt-12 mb-8 mx-8 sm:mx-16">
<div class="">
<h2 class="uppercase text-md mb-4">A project of</h2>
<a href="https://prestonwernerventures.com">
<img src="pwv-logo.svg" class="w-64" />
</a>
</div>
<div class="mt-12 sm:ml-12 sm:mt-0">
<h2 class="uppercase text-md mb-4 pr-6">In collaboration with</h2>
<a href="https://bixby.berkeley.edu">
<img src="bixby-logo.svg" class="w-64" />
</a>
</div>
</div>
</div>
</main>
</body>
</html>