blob: f534d22cdb9738fd5127d65280cdd911ded0fbb6 (
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
|
<template>
<section class="joinus">
<div class="heading">
<div class="title">
<div class="text">Rozpocznij swoją harcerską przygodę!</div>
</div>
<div class="button">
<router-link to="/kontakt">Dołącz do nas!</router-link>
</div>
</div>
</section>
</template>
<style scoped>
.joinus {
width: 100%;
padding: 80px 20%;
background: #dddddd;
display: flex;
flex-direction: row;
justify-content: center;
}
.heading {
width: 900px;
padding: 100px 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;
}
.button a {
color: #ffffff;
text-decoration: none;
}
@media (max-width: 500px) {
.heading {
margin: 0;
align-items: center;
}
.joinus {
padding: 80px 20px;
}
}
</style>
|