forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helpcenter(original).css
144 lines (95 loc) · 2.14 KB
/
helpcenter(original).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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
font-family: Arial, sans-serif;
}
header {
background: linear-gradient(to right, blue);
}
section {
padding: 60px 0;
}
footer {
background: #343a40;
color: #fff;
}
footer p {
margin: 0;
}
.list-group-item {
cursor: pointer;
}
.accordian {
background-color: linear white;
padding: 4px 16px;
margin-bottom: 16px;
border-radius: 4px;
align-items: center;
justify-content: space-between;
box-shadow: 1px 1px 5px ;
cursor: pointer;
}
.card-header {
background-color: blue;
cursor: pointer;
display: flex;
align-items: center;
}
.card-header h5 {
margin: 0;
}
.accordion{
width: 90%;
max-width: 1000px;
margin: 2rem auto;
}
.accordion-item{
background-color : linear-gradient(to right, white, #51b4e6bf);
color: black;
margin: 1rem 0;
border-radius: 0.5rem;
border-radius: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header{
padding: 0.5rem 3rem 0.5rem 1rem;
min-height: 3.5rem;
line-height: 1.25rem;
font-weight: bold;
display: flex;
align-items: center;
position: relative;
cursor: pointer;
}
.accordion-item-header::after{
content: "\002B";
font-size: 2rem;
position: absolute;
right: 1rem;
transition: transform 0.2s ease-in-out;
}
.accordion-item-header.active::after{
content: "\2212";
}
.accordion-item-body {
max-height: 0;
overflow: hidden;
padding: 1rem;
line-height: 1.5rem;
transition: max-height 0.2s ease-out;
border-image: linear-gradient(to right,red,white);
}
.accordion-item-body-content{
padding: 1rem;
line-height: 1.5rem;
border-top: 1px solid;
border-image: linear-gradient(to right,red,white);
}
.accordion-item-header.active + .accordion-item-body{
max-height: 1000px;
}
.flipkart-logo {
display: block;
margin: -24px auto;
max-width: 400px;
}
.heading {
color: rgb(13, 58, 156); /* Setting the heading background color to blue */
}