-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcollaborators.html
More file actions
133 lines (124 loc) · 3.96 KB
/
collaborators.html
File metadata and controls
133 lines (124 loc) · 3.96 KB
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
---
layout: framework
title: Collaborators
---
<head>
<style>
h1 {
font-size: 2rem;
}
.description {
text-align: justify;
font-size: 1rem;
line-height: 1.5;
}
.members-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
/* border: lime solid; */
justify-content: space-around;
align-items: end;
margin: 0;
padding: 0;
}
.member img {
height: 85%;
width: 85%;
border-radius: 10%;
margin: 0;
padding: 0;
}
.member-name {
text-align: center;
font-size: 0.8rem;
font-weight: bold;
margin-top: 0.5rem;
}
/* @media (max-width: 760px) {
.members-container{
display: block;
}
.member img {
height: 50%;
width: 50%;
border-radius: 10%;
margin-bottom: 8px;
border-bottom: #555 solid 1px;
}
.member-name {
font-size: 1rem;
}
} */
</style>
</head>
<body>
<h1> {{ page.title }} </h1>
<p class="description">
We would like to acknowledge the following people have been continiously supportive to the
Materials modelling group.
</p>
<h2> Our Collaborators </h2>
<div class="members-container">
<div class="member">
<img src="assets/images/pictures/AndreaMarini.jpeg" alt="Andrea Marini" >
<p class="member-name"><a href="#" target="_blank" >
Andrea Marini
</a></p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/RenataWentzcovitch.jpeg" alt="Renata Wentzcovitch">
<p class="member-name">
<a href="https://www.apam.columbia.edu/faculty/renata-wentzcovitch" target="_blank">
Renata Wentzcovitch
</a>
</p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/JavierJunquera.jpeg" alt="Javier Junquera" >
<p class="member-name">
<a href="https://personales.unican.es/junqueraj/" target="_blank">
Javier Junquera
</a>
</p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/BiplapSinyal.jpeg" alt="Biplap Sinyal">
<p class="member-name">
<a href="https://www.uu.se/en/contact-and-organisation/staff?query=N1-83" target="_blank">
Biplap Sinyal
</a>
</p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/JamesSifuna.jpeg" alt="James Sifuna">
<p class="member-name">
<a href="https://cuea.edu/Science/?personnel=dr-james-sifuna" target="_blank">
James Sifuna
</a>
</p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/VicOdari.jpeg" alt="Victor Odari">
<p class="member-name">
<a href="https://www.mmust.ac.ke/staffprofiles/index.php/dr-benjamin-victor-odari" target="_blank">
Victor Odari
</a>
</p>
</div>
<!--%%%%%%%%%%%%-->
<div class="member">
<img src="assets/images/pictures/matteo_gatti.webp" alt="Matteo Gatti">
<p class="member-name">
<a href="https://etsf.polytechnique.fr/People/Matteo" target="_blank" >
Matteo Gatti
</a>
</p>
</div>
</div>
</body>
</html>