-
Notifications
You must be signed in to change notification settings - Fork 0
/
accordion.css
112 lines (105 loc) · 2.19 KB
/
accordion.css
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
/*=======================================================
ACCORDION
========================================================*/
.accordion .panel-default .panel-heading .panel-title a:before {
content: "\f208";
font-family: "Ionicons";
padding: 0px;
color: #fff;
height: 30px;
width: 30px;
background: #127f7d;
border: 1px solid #127f7d;
text-align: center;
top: 0px;
left: 15px;
line-height: 29px;
position: absolute;
font-size: 12px;
}
.accordion .panel-default .panel-heading .panel-title a.collapsed:before {
content: "\f217";
font-family: "Ionicons";
background: #fff;
color: #333333;
border: 1px solid #e6e6e6;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.accordion .panel-default .panel-heading {
background-color: #fff;
padding: 0px;
border-radius: 0px;
overflow: hidden;
}
.accordion .panel-default .panel-heading a {
text-decoration: none;
font-size: 13px;
width: 100%;
font-weight: 600;
color: #808080;
background: #fff;
padding: 5px 0px;
padding-left: 40px;
line-height: 20px;
display: inline-block;
text-transform: none;
border-radius: 20px;
}
.accordion .panel-default .panel-heading .panel-title a.collapsed:hover:before {
background: #127f7d;
border: 1px solid #127f7d;
color: #fff;
}
.accordion .panel {
box-shadow: none;
border-radius: 0px;
margin-bottom: 30px;
position: relative;
border: none;
margin-top: 0px;
}
.accordion .panel-body p {
font-size: 13px;
margin-bottom: 0px;
letter-spacing: 0px;
}
.accordion .panel-body {
color: #808080;
padding: 0px;
padding-top: 15px;
line-height: 24px;
font-size: 13px;
}
.accordion .panel-default>.panel-heading+.panel-collapse>.panel-body {
border: none;
}
.progress-bar {
background: #127f7d;
}
ul#helvetilist {
list-style: none;
padding: 0;
}
ul#helvetilist li {
font-weight: bold;
margin: 0;
padding: 0px 10px 5px 20px;
border-bottom: 1px solid #ccc;
*color: #666;
}
ul#helvetilist li :last-child {
border: none;
}
ul#helvetilist li:hover {
color: #127f7d;
background-color: #ddd;
}
.lang {
padding-left:20px;
color:#127f7d;
margin-bottom: 30px;
}