-
Notifications
You must be signed in to change notification settings - Fork 0
/
programacao.html
82 lines (70 loc) · 3.93 KB
/
programacao.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
<!DOCTYPE html>
<html>
<head>
<!-- Standard Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Site Properties -->
<title>Programação</title>
<link rel="stylesheet" type="text/css" href="./semantic/dist/semantic.min.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="./semantic/dist/semantic.min.js"></script>
<script>
$(document)
.ready(function() {
// fix main menu to page on passing
$('.main.menu').visibility({
type: 'fixed'
});
$('.overlay').visibility({
type: 'fixed',
offset: 80
});
// lazy load images
$('.image').visibility({
type: 'image',
transition: 'vertical flip in',
duration: 500
});
// show dropdown on hover
$('.main.menu .ui.dropdown').dropdown({
on: 'hover'
});
});
</script>
<link rel="stylesheet" type="text/css" href="./custom.css">
</head>
<body>
<div id="head" class="ui container">
<h1 class="ui header centered" style="background-color: rgba(255, 255, 255, 0.66);color: #000;">7a ESCOLA REGIONAL DE ALTO DESEMPENHO DE SÃO PAULO
ERAD-SP 2016</h1>
<h3 class="ui header centered" style="background-color: rgba(255, 255, 255, 0.66);color: #000;">03 a 05 de Agosto de 2016, Universidade Mackenzie, São Paulo(SP)</h3>
<h5 class="ui header centered" style="background-color: rgba(255, 255, 255, 0.66);color: #000;">Campus Higienópolis - Rua da Consolação, 930 - Consolação - (011) 2114-8000</h5>
</div>
<div class="ui bordeless ten item main menu">
<div class="ui container">
<a href="./index.html" class="item">Home</a>
<a href="./programacao.html" class="item">Programação</a>
<a href="./chamada-de-trabalhos.html" class="item">Artigos</a>
<a href="./submissao-de-minicursos.html" class="item">Tutoriais</a>
<a href="./datas-importantes.html" class="item">Palestras</a>
<a href="./desafio-de-programacao-paralela.html" class="item">Desafio Prog</a>
<a href="./comites.html" class="item">Comitês</a>
<a href="./inscricoes.html" class="item">Inscrição</a>
<a href="./local.html" class="item">Local</a>
</div>
</div>
<div id="bd" class="ui text container">
<h1>Programação Geral do Evento</h1>
<img class="ui center image" data-src="./img/programação.png">
<p>Para consultar os detalhes das <a href="./chamada-de-trabalhos.html">apresentações de artigos e pôsteres</a>, <a href="submissao-de-minicursos.html">tutoriais, minicursos</a> e <a href="datas-importantes.html">palestras</a>, acesse as opções no menu no topo desta página ou clique nos links das palavras anteriores.</p>
<p>Para localizar os espaços onde serão realizadas as diversas atividades, utilize o mapa abaixo. Você também pode usar o mapa mais completo do campus, acessando a opção <a href="local.html">Local</a>, no menu desta página.</p>
<img class="ui center image" data-src="http://placehold.it/1200x400?text=imagem+da+programação">
</div>
<div class="ui inverted vertical footer segment">
<div class="centered ui tiny header">Grupo de Computação Paralela e Sistemas Distribuídos</div>
<div class="centered ui tiny header">Faculdade de Computação e Informática - Universidade Mackenzie</div>
</div>
</body>
</html>