blob: 65431fabb67a732651674872eef18ede3a924f28 (
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
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
|
<template>
<section class="joinus">
<div class="heading">
<div class="title">
<div class="text">Rozpocznij swoją harcerską przygodę!</div>
</div>
<plain-button @click="$router.push('/kontakt')" text="Dołącz do nas" />
</div>
</section>
</template>
<script>
import PlainButton from './Buttons/PlainButton'
export default {
name: 'JoinUs',
components: {
PlainButton
}
}
</script>
<style scoped>
.webp .joinus {
background-image: url('/assets/bg.webp');
}
.joinus {
width: 100%;
padding: 80px 20%;
background-image: url('/assets/bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
display: flex;
flex-direction: row;
justify-content: center;
}
.heading {
width: 900px;
padding: 50px 0 150px 0;
display: flex;
flex-direction: column;
}
.title {
background-color: #340c0e;
color: #ffffff;
width: 260px;
height: 85px;
margin-bottom: 20px;
text-align: left;
}
.title .text {
margin: 0;
padding: 10px;
font-size: 24px;
}
.button {
background-color: #507b34;
padding: 10px;
max-width: 150px;
color: #ffffff;
text-align: center;
}
.button a {
text-decoration: none;
}
@media (max-width: 500px) {
.heading {
margin: 0;
align-items: center;
}
.joinus {
padding: 80px 20px;
}
}
</style>
|