HTML
xxxxxxxxxx
1
<!-- Header-top-->
2
<div class="container-fluid">
3
<div class="row my-row-1">
4
<div
5
class="col-lg-6 col-xl-6 col-xxl-6 d-flex justify-content-center mx-auto mx-lg-0 justify-content-lg-start align-items-center logo-container">
6
<a href="index.html">
7
<div class="text-center">
8
<!--Image-->
9
<picture>
10
<source srcset="https://i.ibb.co/J2MNrGq/Dru-tvo-Henosis-logo.webp" type="image/webp" />
11
<source srcset="img/png/Društvo-Henosis-logo.png" type="image/png" />
12
<img src="img/png/Društvo-Henosis-logo.png" alt="Logo" class="logo" />
13
</picture>
14
<p class="my-text-color small logo-p">
15
Za svobodo v tukaj in zdaj
16
</p>
17
</div>
18
</a>
19
</div>
20
<div
21
class="col-lg-6 col-xl-6 col-xxl-6 d-flex justify-content-center mx-auto mx-lg-0 justify-content-lg-end align-items-center click-to-action col-b1">
22
<div class="d-flex justify-content-end align-items-center my-pulse">
23
<div class="pulse">
24
<i class="fas fa-phone fa-5x my-fa-phone-1"></i>
25
</div>
26
<a href="tel:0038640706921">
27
<p class="display-6 my-text-color">Stopi v stik z mano</p>
28
</a>
29
</div>
30
</div>
31
</div>
32
</div>
33
<!-- ./Header-top-->
CSS
xxxxxxxxxx
1
.my-row-1 {
2
background-color: #326796;
3
background: -moz-radial-gradient(
4
center,
5
ellipse cover,
6
#3f81bc 0%,
7
#326796 100%
8
);
9
background: -webkit-radial-gradient(
10
center,
11
ellipse cover,
12
#3f81bc 0%,
13
#326796 100%
14
);
15
background: -webkit-gradient(
16
radial,
17
center center,
18
0px,
19
center center,
20
100%,
21
color-stop(0%, #3f81bc),
22
color-stop(100%, #326796)
23
);
24
background: -o-radial-gradient(
25
center,
26
ellipse cover,
27
#3f81bc 0%,
28
#326796 100%
29
);
30
background: -ms-radial-gradient(
31
center,
32
ellipse cover,
33
#3f81bc 0%,
34
#326796 100%
35
);
36
background: radial-gradient(ellipse at center, #3f81bc 0%, #326796 100%);
37
border-bottom: 1px solid #76abd9;
38
}
39
40
.my-text-color {
41
color: #c2d2e0;
42
}
43
44
45
46
@media (max-width: 991px) {
47
.click-to-action {
48
padding-top: 10px;
49
padding-bottom: 10px;
50
}
51
}
52
53
@media (max-width: 575px) {
54
.my-fa-phone-1 {
55
height: 100px;
56
}
57
}
58
59
.logo {
60
width: 100px;
61
height: 100px;
62
margin-top: 10%;
63
}
64
65
.logo-p {
66
margin-bottom: 10%;
67
}
68
.logo-container {
69
padding-left: 2%;
70
}
71
72
.click-to-action {
73
padding-right: 2%;
74
}
75
76
@media (max-width: 991px) {
77
.col-b1 {
78
border-top: thin solid #76abd9;
79
width: 90%;
80
margin-left: auto;
81
margin-right: auto;
82
}
83
}
84
.pulse i {
85
color: #88a8c3;
86
}
87
88
@media (max-width: 575px) {
89
.my-pulse {
90
margin-top: 10px;
91
margin-bottom: -10px;
92
}
93
}
94
95
.pulse {
96
height: 100px;
97
width: 100px;
98
border-radius: 50%;
99
display: flex;
100
justify-content: center;
101
align-items: center;
102
position: relative;
103
}
104
105
.pulse::before {
106
content: "";
107
position: absolute;
108
border: 1px solid #88a8c3;
109
width: calc(100% + 40px);
110
height: calc(100% + 40px);
111
border-radius: 50%;
112
animation: pulse 1s linear infinite;
113
}
114
115
.pulse::after {
116
content: "";
117
position: absolute;
118
border: 1px solid #88a8c3;
119
width: calc(100% + 40px);
120
height: calc(100% + 40px);
121
border-radius: 50%;
122
animation: pulse 1s linear infinite;
123
animation-delay: 0.3s;
124
}
125
126
@keyframes pulse {
127
0% {
128
transform: scale(0.5);
129
opacity: 0;
130
}
131
132
50% {
133
transform: scale(1);
134
opacity: 1;
135
}
136
137
100% {
138
transform: scale(1.3);
139
opacity: 0;
140
}
141
}
JS
1
1
Console errors: 0