-
Notifications
You must be signed in to change notification settings - Fork 0
/
_case_details.scss
87 lines (86 loc) · 2.44 KB
/
_case_details.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
.case_details_area{
padding-top: 100px;
margin-top: 138px;
@media #{$mobile_device} {
padding-top: 100px;
margin-top: 0px;
}
.border_bottom{
border-bottom: 1px solid #E8E8E8;
padding-bottom: 10px;
}
.case_thumb img {
width: 100%;
}
.details_title{
margin-bottom: 60px;
span{
font-size: 15px;
color: #919191;
font-weight: 400;
}
h3{
font-size: 46px;
font-weight: 300;
color: #001D38;
@media #{$mobile_device} {
font-size: 28px;
}
}
}
.details_main_wrap{
.details_info {
color: #001D38;
font-weight: 400;
font-size: 20px;
margin-top: 54px;
margin-bottom: 35px;
}
.single_details{
margin-bottom: 30px;
span{
font-weight: 500;
font-size: 22px;
color: #001D38;
}
p{
color: #727272;
font-size: 15px;
font-weight: 400;
margin-bottom: 0;
}
ul{
li{
display: inline-block;
margin-right: 4px;
@media #{$mobile_device} {
display: block;
margin-right: 4px;
margin: 0;
margin: 10px 0;
text-align: center;
}
a{
background: #3B5997;
@include border-radius(4px);
font-size: 14px;
font-weight: 400;
display: inline-block;
color: #fff;
padding: 15px 28px;
font-size: 16px;
@media #{$mobile_device}{
display: block;
}
}
&:nth-child(2) a{
background: #1DA1F2 !important;
}
&:nth-child(3) a{
background: #B21D23 !important;
}
}
}
}
}
}