blob: dd010180ffc72c7299ac02911200fa59c61ad224 (
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
|
.header {
> h2 {
margin-top: 0;
span:nth-child(2) {
font-size: 12px;
color: #777;
font-weight: normal;
margin: 0 0.3em;
}
}
}
.list {
display: flex;
flex-wrap: wrap;
}
.proxy {
width: 300px;
padding: 10px 5px;
transition: transform 0.4s ease;
// transition: transform 0.4s ease, color 0.4s ease;
&.proxySelectable {
cursor: pointer;
&:hover {
transform: scale(1.1);
}
}
}
|