-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_accordion.scss
123 lines (121 loc) · 3.38 KB
/
_accordion.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
#accordion{
button{
font-size: 16px;
color: #0f2137;
font-weight: 500;
font-weight: 500;
@media #{$mobile_device} {
font-size: 14px;
}
}
.card{
margin-bottom: 15px;
border-radius: 0;
border-radius: 0 !important;
margin-bottom: 30px;
.card-header {
background-color: transparent;
padding: 4px 14px;
@media #{$mobile_device} {
padding: 4px 0;
}
}
.card-body{
font-size: 16px;
line-height: 28px;
color: #888888;
padding: 10px 30px 32px;
}
.collapse {
border-bottom: 1px solid #d7dbe3;
&.show{
// background: #fff;
// -webkit-box-shadow: 0px 30px 50px 0 rgba(77, 193, 220, 0.1);
// box-shadow: 0px 30px 50px 0 rgba(77, 193, 220, 0.1);
border-bottom: 1px solid transparent;
}
}
}
h5{
position: relative;
z-index: 1;
// button.btn.btn-link{
// &:after{
// position: absolute;
// content: "\e648";
// top: 9px;
// right: 12px;
// height: auto;
// font-family: 'themify';
// color: #0f2137;
// font-size: 14px;
// @media #{$mobile_device} {
// right: 10px;
// }
// }
// }
// button.btn.btn-link.collapsed{
// &:after{
// content: "\e64b";
// color: #0f2137;
// font-size: 14px;
// }
// }
button.btn.btn-link{
&:after{
position: absolute;
content: "\e648";
top: 9px;
right: 12px;
height: auto;
font-family: 'themify';
color: #0f2137;
font-size: 14px;
left: -24px;
@media #{$mobile_device} {
right: 10px;
}
}
}
button.btn.btn-link.collapsed{
&:after{
content: "\e64b";
color: #0f2137;
font-size: 14px;
}
}
button{
i{
height: 36px;
width: 36px;
font-size: 14px;
display: inline-block;
text-align: center;
line-height: 36px;
border-radius: 50%;
margin-right: 20px;
color: #fff;
@include transition(.3s);
@media #{$mobile_device} {
display: none;
}
}
&.btn.btn-link.collapsed{
i{
background: #f4f7f9;
color: #0f2137;
@media #{$mobile_device} {
display: none;
}
}
}
}
}
.btn-link:hover {
color: #182028;
text-decoration: none;
}
.btn{
text-align: left !important;
}
}