blob: 0799acef576d6a69d1575fb5bdf7a4972ae4cf1d (
about) (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
.grid-item-container {
padding: 10px;
transition: all 0.3s ease;
}
.grid-item-body {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: -5px 10px 60px -13px rgba(0, 0, 0, 0.20);
height: 270px;
}
.grid-item-container .author-details {
margin-bottom: 20px;
}
.grid-item-container .author-img img {
width: 35px;
height: 35px;
object-fit: cover;
border-radius: 8px;
float: left;
margin-right: 15px;
}
.grid-item-container .author-details h5 {
margin-bottom: 2px;
font-weight: 600;
color: #6c7583;
font-size: 14px;
}
.grid-item-container .author-details a {
color: #6c7583;
}
.grid-item-container .author-details p {
margin-bottom: 0;
font-size: 12px;
}
.grid-item-container .author-header, .repo-header, .repo-body {
margin-bottom: 15px;
}
.grid-item-container .author-header a {
text-decoration: none;
}
.grid-item-container .repo-header h5 {
font-size: 19px;
margin-bottom: 5px;
}
.grid-item-container .repo-header p {
margin-bottom: 0;
}
.grid-item-container .repo-header a {
text-decoration: none;
}
.grid-item-container .repo-header .repo-meta a {
color: currentColor;
font-weight: 500;
}
.grid-item-container .author-name {
font-weight: 400;
}
.grid-item-container .repo-name {
font-weight: 700;
word-wrap: break-all;
}
.grid-item-container .repo-body p {
font-size: 14px;
margin-bottom: 0;
color: #6e7583;
}
.grid-item-container .repo-footer {
font-size: 12px;
position: absolute;
bottom: 20px;
left: 20px;
right: 25px;
background: white;
padding: 10px;
}
.grid-item-container .repo-footer a {
text-decoration: none;
color: #6c757d;
font-weight: 500;
}
.grid-item-container .repo-footer .repo-language-color {
width: 10px;
height: 10px;
margin-right: 4px;
border-radius: 50%;
}
.grid-item-container .repo-footer a svg {
position: relative;
top: -2px;
fill: #6c757d;
margin-right: 5px;
}
|