_call_out.scss
1.4 KB
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
.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%;
margin-bottom: -25px;
margin-top: 25px;
padding-left:50%;
padding-right:50%;
background-color: #000;
box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
@media screen and (max-width: 768px) {
min-height: 250px;
}
h2{
@media screen and (max-width: 768px) {
font-size: 24px;
}
}
}
.side-menu-page{
.call-out-block{
margin-left:-75%;
@media(max-width: 1000px) {
padding-left:75%;
}
}
}
.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;
border-radius: 40px !important;
@media screen and (max-width: 768px) {
font-size: 16px;
padding: 15px 30px;
}
}
.call-out-block a:hover{
color: #fff;
background-color:#669999;
}