style.css
890 Bytes
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
.call-out-block{
background-size: cover;
min-height: 300px;
position: relative;
overflow: hidden;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
color:#fff;
margin-left:-50%;
margin-right:-50%;
padding-left:50%;
padding-right:50%;
box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}
.call-out-block h2{
text-align: center;
}
.call-out-block p{
text-align: center;
}
.call-out-block a{
border-radius: 0!important;
background-color: #EE0000;
color: #fff;
border: none;
font-size: 19px;
font-weight: 500;
margin: 10px 0 0px 0;
padding: 15px 60px;
line-height: 26px;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
width: unset;
}
.call-out-block a:hover{
color: #fff;
background-color:#669999;
}