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
| .directory-list {
| ul {
| list-style: none;
| margin: 0;
| padding: 0;
| }
| > ul li {
| position: relative;
| h3 {
| position: sticky;
| left: 0;
| width: 100%;
| text-align: center;
| margin: 0!important;
| padding: .5rem 1rem;
| font-size: 20vw;
| background-color: var(--base-50);
| z-index: 5;
| top: 0;
| }
| li {
| padding: .5rem 1rem;
| display: flex;
| justify-content: space-between;
| border-radius: var(--radius);
| }
| > ul {
| display: flex;
| flex-direction: column;
| gap: .125rem;
| }
| li:nth-of-type(odd){
| background-color: var(--base-200);
| }
| li:nth-of-type(even){
| background-color: var(--base-100);
| }
| }
| }
|
|
| @media (min-width: 768px){
| .directory-list > ul li h3 {
| font-size: 10vw;
| }
| }
|
|