-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.css
More file actions
45 lines (38 loc) · 717 Bytes
/
example.css
File metadata and controls
45 lines (38 loc) · 717 Bytes
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
.filter-list {
width: auto;
margin: auto;
}
.filter-list .filterable {
display: inline-block;
width: 20%;
border: 1px solid grey;
border-radius: 2px;
margin: 10px;
padding: 10px;
background: #cceedd;
}
.filter-list .filterable.filter-visible {
display: inline-block;
}
.filter-list .filterable.filter-hidden {
display: none;
}
.my-filter-list {
width: auto;
margin: auto;
}
.my-filter-list .filterable {
display: inline-block;
width: 20%;
border: 1px solid grey;
border-radius: 2px;
margin: 10px;
padding: 10px;
background: #ddccee;
}
.my-filter-list .filterable.filter-visible {
display: inline-block;
}
.my-filter-list .filterable.filter-hidden {
display: none;
}