-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (136 loc) · 3.59 KB
/
index.html
File metadata and controls
142 lines (136 loc) · 3.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="./favicon.ico" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<title>#FOSS4G2021BA</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.Support {
font-size: 1.5em;
line-height: 1.5;
}
.Padding-text {
padding-top: 2em;
}
.City-text {
padding-left: 20px !important;
}
.Year {
font-size: 1.8em;
}
.City {
font-size: 3em;
font-weight: 900;
}
.Footer {
padding-top: 2em;
font-size: 1.4em;
}
.Blue {
color: #568ad5;
}
.Yellow {
color: #fcaa09;
}
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #212529;
background-color: #000;
color: #fff;
font-size: calc(10px + 2vmin);
}
.container {
text-align: center;
width: 100vw;
height: 100vh;
box-sizing: border-box;
display: flex;
justify-content: center;
flex-direction: column;
}
.logo,
.City-text {
width: 100vw;
display: block;
text-align: left;
}
@media (min-width: 576px) {
.logo {
width: 30vw;
display: inline-block;
}
.City-text {
width: 30vw;
display: inline-block;
}
}
</style>
</head>
<body>
<div class="container">
<div id="support" class="Support row">YO APOYO</div>
<div class="Padding-text row">
<div class="logo">
<img
src="./static/media/geoinquietos.ff39b530.png"
class="App-logo"
alt="logo"
style="width: 100%; min-width: 300px"
/>
</div>
<div class="City-text col-sm-8">
<div class="row"><div class="Year text-left col">2021</div></div>
<div class="row">
<div class="City text-left col">
Buenos <span class="Blue">Aires</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="Footer col">
#FOSS4G<span class="Yellow">2021</span><span class="Blue">BA</span>
</div>
</div>
</div>
<script>
var i = 0;
var translations = Object.values({
ar: "\u0623\u0646\u0627 \u0623\u0624\u064a\u062f",
arn: "F\xcbTALUWN",
cn: "\u6211\u652f\u6301",
de: "ICH UNTERST\xdcTZE",
en: "I SUPPORT",
es: "YO APOYO",
fr: "JE SOUTIENS",
gn: "CHE AIPYTYVO",
it: "APPOGGIO",
pt: "EU APOIO",
jp: "\u5fdc\u63f4\u3057\u307e\u3059",
quz: "YANAPAY",
ru:
"\u042f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e",
sw: "NINASAIDIA",
nb: "JEG FORSVARER"
});
var max = translations.length - 1;
translations.sort(function(){ return Math.random() - 0.5; })
setInterval(function() {
document.getElementById("support").innerHTML = translations[i++];
if (i > max) i = 0;
}, 1000);
</script>
</body>
</html>