-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_popular_property.scss
123 lines (119 loc) · 3.18 KB
/
_popular_property.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.popular_property{
padding-top: 120px;
padding-bottom: 90px;
&.plus_padding{
padding-top: 186px;
@media #{$mobile_device} {
padding-top: 50px;
}
}
@media #{$mobile_device} {
padding-top: 50px;
padding-bottom: 20px;
}
.more_property_btn{
margin-top: 30px;
}
.single_property{
@include border-radius(15px);
overflow: hidden;
margin-bottom: 30px;
@include box-shadow(0 5px 15px rgba(0, 0, 0, .05));
.property_thumb{
position: relative;
overflow: hidden;
img{
width: 100%;
@include transform(scale(1));
@include transition(.3s);
}
.property_tag{
position: absolute;
top: 25px;
left: 25px;
background: #FDAE5C;
padding: 8px 14px;
color: #fff;
border-radius: 30px;
font-size: 13px;
font-weight: 500;
z-index: 1;
&.red{
background: #FF5748 !important;
}
}
}
.property_content{
padding: 25px;
border-bottom:1px solid #E8E8E8 ;
.main_pro{
h3{
font-size: 16px;
color: #001D38;
font-weight: 500;
margin-bottom: 0;
margin-bottom: 8px;
a{
color: #001D38;
&:hover{
color: #FDAE5C;
}
}
}
}
.mark_pro{
img{
}
span{
font-size: 13px;
font-weight: 400;
color: #919191;
}
}
.amount{
display: inline-block;
background: #00D363;
border-radius: 30px;
padding: 7px 18px;
color: #fff;
font-weight: 500;
font-size: 13px;
margin-top: 13px;
}
}
.footer_pro{
padding: 12px 25px;
ul{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
li{
.single_info_doc{
img{
}
span{
color: #001D38;
font-size: 13px;
font-weight: 400;
margin-left: 5px;
display: inline-block;
}
}
}
}
}
&:hover{
.property_thumb{
img{
@include transform(scale(1.06));
}
}
}
}
}