-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
97 lines (84 loc) · 3.29 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>GDG Recife</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="favicon.png" />
<link href="https://plus.google.com/107427206571717582029" rel="publisher" />
<meta property="og:title" content="Grupo de Desenvolvedores Google Recife" />
<meta property="og:image" content="og_image.png" />
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#DD5044">
<meta property="og:url" content="http://www.gdgrecife.com" />
<meta name="description" content="O Google Developers Group de Recife é um grupo aberto de entusiastas em tecnologias Google. Procuramos disseminar o conhecimento em tópicos como Android, Chrome, HTML5, Cloud, APIs, UI/UX e outros, além de apoiar iniciativas que visam o maior engajamento da comunidade.">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<style>
html,
body {
margin: 0;
padding: 0;
}
body > ul {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
font-size: 6rem;
}
body > ul > li {
height: 25vh;
background: #000;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
body > ul > li a {
text-align: center;
display: block;
flex: 1;
}
body > ul > li a > img {
height: 12vh;
}
body > ul > li a,
body > ul > li a:hover,
a:visited {
color: #fff;
text-decoration: none;
}
body > ul > li:nth-child(1) {
background: #DD5044;
}
body > ul > li:nth-child(2) {
background: #4A8AF4;
}
body > ul > li:nth-child(3) {
background: #FFC109;
}
body > ul > li:nth-child(4) {
background: #16A05D;
}
</style>
</head>
<body>
<ul>
<li><a href="http://meetup.com/GDG-Recife/">Meetup</a></li>
<li><a href="https://spaces.google.com/space/349954598">Space</a></li>
<li><a href="https://play.google.com/store/apps/details?id=org.gdg.frisbee.android">App</a></li>
<li>
<a href="http://facebook.com/GDGRecife"><img src="facebook-like.svg" /></a>
<a href="http://m.me/gdgrecife"><img src="facebook-messenger.svg" /></a>
<a href="http://twitter.com/GDGRecife"><img src="twitter.svg" /></a>
</li>
</ul>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-72021411-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>