forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplore.css
93 lines (80 loc) · 1.59 KB
/
explore.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
.explore-options {
padding: 5rem 0;
width: 110rem;
margin: auto;
}
.explore-options .heading {
margin: 0px 0px 2rem;
color: rgb(54, 54, 54);
font-size: 3rem;
line-height: 4rem;
font-weight: 500;
}
.accordions {
display: flex;
flex-direction: column;
}
.accordion {
display: flex;
flex-direction: column;
margin-bottom: 2rem;
border-radius: 0.8rem;
padding: 2rem 2.4rem;
border: 1px solid rgb(232, 232, 232);
cursor: pointer;
}
.accordion-container {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 20px;
font-weight: 200;
}
.accordion-container i {
font-size: 15px;
transition: 0.2s;
}
.accordion-data {
margin-top: 2rem;
display: none;
}
.show {
display: block;
}
.accordion-data ul {
display: flex;
flex-wrap: wrap;
max-width: 100%;
list-style: none;
align-items: center;
}
.accordion-data li {
text-decoration: none;
color: rgb(130, 130, 130);
font-size: 1.6rem;
line-height: 1.8;
margin-right: 1rem;
font-weight: 200;
}
.accordion-data li:hover {
color: black;
}
.accordion-data .small-circle {
display: inline-block;
width: 0.3rem;
height: 0.3rem;
background: rgb(130, 130, 130);
border-radius: 50%;
margin-right: 1rem;
margin-bottom: 0.35rem;
}
.animate {
transform: rotate(180deg);
}
@media (max-width: 800px) {
.explore-options {
margin: 0px 2.4rem;
max-width: 100vw;
width: auto;
}
}