blob: 08c4b421114e9e8a007cb6e5d2e23b54388c54d0 (
plain)
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
|
.header {
> h2 {
margin-top: 0;
font-size: 1.3em;
@media (--breakpoint-not-small) {
font-size: 1.5em;
}
span:nth-child(2) {
font-size: 12px;
color: #777;
font-weight: normal;
margin: 0 0.3em;
}
}
}
.list {
display: flex;
flex-wrap: wrap;
}
.proxy {
max-width: 280px;
margin: 2px;
@media (--breakpoint-not-small) {
min-width: 150px;
margin: 10px;
}
transition: transform 0.2s ease-in-out;
&.proxySelectable {
cursor: pointer;
&:hover {
transform: translateY(-2px);
}
}
}
|