blob: 55d8171d95836c964ab6f29aa201894e30894ecb (
plain)
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
|
<template>
<div class="joinus">
<div class="title">
<h1 class="text">Rozpocznij swoją harcerską przygodę!</h1>
</div>
<div class="button">
<router-link to="/join-us">Dołącz do nas!</router-link>
</div>
</div>
</template>
<style scoped>
.joinus {
}
.title {
background-color: #340c0e;
color: #ffffff;
max-width: 330px;
text-align: left;
}
.title .text {
padding: 10px;
}
.button {
background-color: #507b34;
padding: 10px;
max-width: 150px;
}
.button a {
color: #ffffff;
text-decoration: none;
}
</style>
|