-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (125 loc) · 3.69 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
<!dochttps://brisarte.com.br://brisarte.com.br/type html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-136380195-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-136380195-1');
</script>
<meta charset="utf-8" />
<title>Brisarte</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="./css/style.css" rel="stylesheet">
<style>
.right {
float: right;
text-align: right;
}
.projeto img {
max-width: 100%;
}
.flex-content {
display: flex;
align-content: center;
justify-items: center;
flex-direction: column;
}
.sm-start {
order: 1;
}
.sm-end {
order: 0;
}
.flex {
text-align: left;
flex: 3;
position: relative;
display: inline-flex;
align-content: center;
justify-items: center;
align-items: center;
float: left;
}
.flex-2 {
flex: 4;
}
@media (min-width: 700px) {
.flex-content {
flex-direction: row;
}
.sm-start {
order: 0;
}
.sm-end {
order: 1;
}
}
a {
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<div id="container">
</div>
<div id="home" class="projetos">
<div class="logo">
<a href="/">
BRIS<br>
ARTE
</a>
</div>
<article class="projeto" id="presenca">
<a href="instalacoes">
<h3>instalações interativas</h3>
<div class="flex-content">
<div class="flex p50 sm-start">
<span>Obras interativas utilizando técnicas de projeção, câmeras e sensores eletrônicos.</span>
</div>
<div class="flex flex-2 sm-end">
<img src="./img/divulgacao-presenca.jpg"/>
</div>
</div>
</a>
</article>
<article class="projeto right" id="presenca">
<a href="videomapping">
<h3>VJ & Videomapping</h3>
<div class="flex-content">
<div class="flex flex-2 p50 sm-start">
<span>
Performances ao vivo com iluminação e <i>Mapping</i> de vídeos em festas e eventos.
</span>
</div>
<div class="flex sm-end">
<img src="./img/fotoprojecao.jpg"/>
</div>
</div>
</a>
</article>
<!--
<article class="projeto" id="presenca">
<h3>rascunhos digitais</h3>
<div class="flex-content">
<div class="flex p50 sm-start">
<span>
rascunhos<br> sketches<br> dibujos
</span>
</div>
<div class="flex flex-2 sm-end">
<img src="./img/divulgacao-presenca.jpg"/>
</div>
</div>
</article>
-->
</div>
</body>
<script src="js/three.js"></script>
<script src="js/stats.min.js"></script>
<script src="js/linhas3d.js"></script>
</html>