This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_cases.scss
59 lines (59 loc) · 1.56 KB
/
_cases.scss
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
.our-cases-area{
background: #f8fcff;
.single-cases{
.cases-img{
overflow: hidden;
img{
width: 100%;
transform: scale(1.05);
@include transition(.4s);
}
}
.cases-caption{
padding: 24px 20px 10px 20px;
background: #fff;
h3{
a{
font-size: 21px;
font-weight: 800;
line-height: 1.4;
margin-bottom: 40px;
display: block;
@media #{$sm}{
font-size: 16px;
}
@media #{$xs}{
font-size: 16px;
}
&:hover{
color: $theme-color;
}
}
}
.prices{
p{
color: #072366;
font-size: 12px;
@media #{$xs}{
font-size: 11px;
}
span{
color: #072366;
font-size: 16px;
font-weight: 700;
@media #{$sm}{
font-size: 13px;
}
}
}
}
}
&:hover{
.cases-img{
img{
transform: scale(1);
}
}
}
}
}