-
Notifications
You must be signed in to change notification settings - Fork 0
/
our-demands.html
105 lines (79 loc) · 2.96 KB
/
our-demands.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
<!DOCTYPE html>
<head>
<title>our demands</title>
<!-- <link rel="stylesheet" href="./css/bubble.css" > -->
<script src="https://cdn.jsdelivr.net/npm/less@3.13" ></script>
<link rel="stylesheet" href="./css/retro-navbar.css" />
<link rel="stylesheet" href="./css/styled-text.css" >
<link rel="stylesheet" href="./css/commons.css" >
<link rel="stylesheet" href="./css/demands.css" >
<script src="./js/navbar.js"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kirang+Haerang&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Display:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="top-right open">
<a class="disc l1" href="./contact.html">
<div>
reach out!
</div>
</a>
<a class="disc l2" href="./multimedia.html">
<div>multimedia</div>
</a>
<a class="disc l3" href="./our-history.html">
<div>our history</div>
</a>
<a class="disc l4" href="./index.html">
<div> <| home</div>
</a>
<a class="disc l5 toggle">
moin!
</a>
</nav>
<div class="styled-txt" style="left: 0%;">
<p>Our Demands</p>
</div>
<div>
<div>
<ul class="rolldown-list" id="myList">
<li>Freedom of Movement and the right to stay in the country of our choice.
<br>(For our group: Paragraph 23!)
</li>
<li>
Work permit and the right to education and training!
</li>
<li>
Access to accommodation, to the health system and other social services!
</li>
<li>
Abolution of the Dublin regulation: Validity of all European documents in all EU countries!
</li>
</ul>
</div>
<img src="./img/tent-back.jpeg" width="360px" height="360px" style="display: inline-block;" >
</div>
<script>
document.addEventListener("DOMContentLoaded", loadNavbar());
$('.rolldown-list li').each(function () {
var delay = ($(this).index() / 4) + 's';
$(this).css({
webkitAnimationDelay: delay,
mozAnimationDelay: delay,
animationDelay: delay
});
});
$('#btnReload').click(function () {
$('#myList').removeClass('rolldown-list');
setTimeout(function () {
$('#myList').addClass('rolldown-list');
}, 1);
});
</script>
</body>
</html>