-
Notifications
You must be signed in to change notification settings - Fork 0
/
soundstacksignup.html
156 lines (129 loc) · 4.66 KB
/
soundstacksignup.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<head>
<title>Sign up for active particiaption for Soundstack workshop</title>
<!-- <link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/fontello.css">
<link rel="stylesheet" href="css/font-awesome.css"> -->
<style>
@charset "UTF-8";
@font-face {
font-family: "Steelfish";
src: url('../fonts/steelfish/steelfish_eb-webfont.eot');
src: url('../fonts/steelfish/steelfish_eb-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/steelfish/steelfish_eb-webfont.woff') format('woff'), url('../fonts/steelfish/steelfish eb.otf') format('opentype');
font-weight: 800;
}
@font-face {
font-family: "Steelfish";
src: url('../fonts/steelfish/steelfish_bd-webfont.eot');
src: url('../fonts/steelfish/steelfish_bd-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/steelfish/steelfish_bd-webfont.woff') format('woff'), url('../fonts/steelfish/steelfish bd.otf') format('opentype');
font-weight: bold;
}
body {
margin: 0;
padding: 0;
font-family: Verdana,Arial,sans-serif;
min-height: 100%;
overflow-x: hidden;
}
main {
display: flex;
flex-direction: column;
justify-content: right;
font-size: 18px;
color: #999999;
width: 100vw;
height: 100%;
}
header,
footer {
width: 100%;
padding: 10px;
text-align: center;
}
header {
background: #5DA292;
margin-bottom: 10px;
}
.footerwrapper {
display: flex;
flex: 1;
align-items: flex-end;
}
footer {
margin-top: 10px;
background: #EEEEEE;
}
footer img {
max-height: 70px;
max-width: 80%;
}
h1 {
font-size: 37px;
color: #fff;
}
h2 {
font-size: 30px;
color: #fff;
}
a {
color: #F9CE06;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
a:hover {
color: #999;
}
.sectionwrapper {
width: 100%;
display: flex;
justify-content: center;
}
section {
padding: 10px;
max-width: 800px;
}
</style>
</head>
<body>
<main id="main">
<header>
<h1>SOUNDSTACK - AUDIOVISUAL POINT-CLOUDS WORKSHOP</h1>
<h2>Application for active participation</h2>
</header>
<div class="sectionwrapper">
<section>
<p>
Please see the following information to apply for active participation in the Soundstack -
Audiovisual
Point-clouds workshop
on the 26th of March, 10:00 - 15:00h (GMT).
</p>
<p>
For being part in the workshop you need basic experience in Unity. For that we need:
<ol>
<li>A short written statement about you and your experiences with Unity (max 1000 characters)
</li>
<li>Video recording or photos (combined into one .pdf file max 10MB) of your best Unity project</li>
<li>Optional: website link</li>
<li>Your email address</li>
</ol>
Please send all information as a wetransfer link until <strong>21st March 2021</strong> to:
kh[at]raumperspektive.com
<br><br>
If your application is accepted you will receive a link with further instructions for the workshop,
including links to the software and the Unity version number. If you already have Unity installed,
it’s
a good idea to install Unity hubs to be able to run multiple versions of Unity on the same computer.
</p>
</section>
</div>
<div class="footerwrapper">
<footer>
<p>Soundstack is part of <a href="https://2021.intersections.io">Intersections 2021</a></p>
<img src="images/logo-white-noDate.png">
</footer>
</div>
</main>
</body>