-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (128 loc) · 3.62 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Signal and Information Processing for Sensing Systems</title>
<meta name="description" content="IBEC's research group">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat" />
<style>
body {
height: 100vh;
width: 100vw;
min-width: 23rem;
font-family: Montserrat, Sans-Serif;
background-color: #DDDDDD;
}
a {
color: #000;
}
div.item {
margin-left: auto;
margin-right: auto;
width: 20rem;
align-self: stretch;
justify-content: center;
vertical-align: top;
}
div.item figure {
margin-left: auto;
margin-right: auto;
text-align: center;
/* The width of the container also implies margin around the images. */
width: 15rem;
border: 3px solid black;
border-radius: 25px;
background-color: white;
padding: 1rem;
margin: 1.5rem;
}
div.links {
width: 80%;
max-width: 90rem;
margin-left: auto;
margin-right: auto;
padding: 1rem;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
div.item img {
width: 7rem;
height: 7rem;
background-color: white;
padding: 0.2rem;
}
div.item figcaption {
/* Make the caption a block so it occupies its own line. */
display: block;
}
img#mainlogo {
width: 300px; height: 300px; display:block; margin-left: auto; margin-right: auto;
}
div.toplogo figcaption {
text-align: center;
padding: 1em;
font-style: italic;
}
</style>
</head>
<body>
<div class="toplogo">
<figure>
<img id="mainlogo" src="media/sipss-logo.png" alt="SIPSS logo"/>
<figcaption>Signal and Information Processing for Sensing Systems</figcaption>
</figure>
</div>
<div class="links">
<div class="item">
<a href="https://ibecbarcelona.eu/sensingsys">
<figure>
<img src="media/ibec-logo.jpg" alt="IBEC logo"/>
<figcaption>Main website</figcaption>
</figure>
</a>
</div>
<div class="item">
<a href="https://www.ub.edu/portal/web/dp-electronics/research-groups1">
<figure>
<img src="media/logo_ub.png" alt="University of Barcelona logo"/>
<figcaption>Department of Electronic and Biomedical Engineering, University of Barcelona</figcaption>
</figure>
</a>
</div>
<div class="item">
<a href="https://github.com/sipss">
<figure>
<img src="media/github-logo.png" alt="Github logo"/>
<figcaption>GitHub</figcaption>
</figure>
</a>
</div>
<div class="item">
<a href="https://sipss.github.io/AlpsNMR">
<figure>
<img src="media/alpsnmr-logo.png" alt="AlpsNMR logo"/>
<figcaption>AlpsNMR documentation</figcaption>
</figure>
</a>
</div>
<div class="item">
<a href="https://sipss.github.io/GCIMS">
<figure>
<img src="media/gcims-logo.png" alt="GCIMS logo"/>
<figcaption>GCIMS documentation</figcaption>
</figure>
</a>
</div>
</div>
</body>
</html>