1 |
rakinar2 |
575 |
.main { |
2 |
|
|
background: rgba(200, 200, 200, 0.18); |
3 |
|
|
box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.25); |
4 |
|
|
display: block; |
5 |
|
|
cursor: pointer; |
6 |
|
|
text-decoration: none; |
7 |
|
|
padding: 5px; |
8 |
|
|
border-radius: 5px; |
9 |
|
|
transition: 0.2s; |
10 |
|
|
} |
11 |
|
|
|
12 |
|
|
.main:hover { |
13 |
|
|
background: rgba(200, 200, 200, 0.3); |
14 |
|
|
} |
15 |
|
|
|
16 |
|
|
.repo { |
17 |
|
|
display: flex; |
18 |
|
|
align-items: center; |
19 |
|
|
justify-content: center; |
20 |
|
|
gap: 5px; |
21 |
|
|
font-size: 0.75em; |
22 |
|
|
} |
23 |
|
|
|
24 |
|
|
.stats { |
25 |
|
|
display: flex; |
26 |
|
|
justify-content: space-around; |
27 |
|
|
align-items: center; |
28 |
|
|
} |
29 |
|
|
|
30 |
|
|
.stats > div { |
31 |
|
|
display: flex; |
32 |
|
|
justify-content: center; |
33 |
|
|
align-items: center; |
34 |
|
|
gap: 5px; |
35 |
|
|
color: #ccc; |
36 |
|
|
font-size: 0.7em; |
37 |
|
|
} |