-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
69 lines (63 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<title>Stack More Layers AI Club</title>
<link rel="icon" href="favicon.png">
<style type="text/css">
body {
background-color: white;
font-family: 'Montserrat', sans-serif;
padding:0;
margin: auto;
}
header img{
height : 50vh;
width : auto;
}
h1{
font-size: 10vmin;
font-family: 'Montserrat', sans-serif;
}
h1 small {
font-size: 3vmin;
}
main{
margin: auto;
text-align: center;
}
span.linebreak::after{
content: ' - ';
}
@media (max-width:768px){
span.linebreak::after{
content: '';
}
span.linebreak{
display:block;
}
}
</style>
</head>
<body>
<main>
<header>
<img src="bg.png" alt="Stack more layers">
</header>
<section>
<h1>Stack More Layers !<br><small>An AI club in Brussels, BE</small></h1>
<p>
<span class="linebreak">IRC: <a href="http://webchat.freenode.net/?nick=IWantMoreLayers&channels=%23stackmorelayers">#stackmorelayers (freenode.org)</a></span>
<span class="linebreak">GitHub: <a href="https://github.com/StackMoreLayers">@StackMoreLayers</a></span>
Mailing-list: <a href="https://groups.google.com/forum/#!forum/stackmorelayers">stackmorelayers@googlegroups.com</a>
</p>
<p>
<span class="linebreak">Next meeting: Wednesday at 6PM at costa</span>
<em></em>
</p>
</section>
</main>
</body>
</html>