_call_out.scss
1.47 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: 18.75rem;
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: -1.5625rem;
margin-top: 1.5625rem;
padding-left:50%;
padding-right:50%;
background-color: #000;
box-shadow: inset 0 0 0 125rem rgba(0, 0, 0, 0.3);
@media screen and (max-width: 48rem) {
min-height: 15.625rem;
}
h2{
@media screen and (max-width: 48rem) {
font-size: 1.5rem;
}
}
}
.side-menu-page{
.call-out-block{
margin-left:-75%;
@media(max-width: 62.5rem) {
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: 1.1875rem;
font-weight: 500;
margin: 0.625rem 0 0rem 0;
padding: 0.9375rem 3.75rem;
line-height: 1.625rem;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
width: unset;
border-radius: 2.5rem !important;
font-weight: bold;
@media screen and (max-width: 48rem) {
font-size: 1rem;
padding: 0.9375rem 1.875rem;
}
}
.call-out-block a:hover{
color: #fff;
background-color:#669999;
}