-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (47 loc) · 967 Bytes
/
style.css
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
.github-repo-card {
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
background-color: #f9f9f9;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.github-repo-card .repo-card-header {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.github-repo-card .repo-owner-avatar {
border-radius: 50%;
width: 50px;
height: 50px;
margin-right: 10px;
}
.github-repo-card .repo-title {
font-size: 1.5em;
}
.github-repo-card .repo-title a {
text-decoration: none;
}
.github-repo-card .repo-title a:hover {
text-decoration: underline;
}
.github-repo-card .repo-stats {
display: flex;
gap: 30px;
margin-top: 10px;
font-size: 0.75em;
}
.github-repo-card .repo-stat {
display: grid;
grid-template-columns: 24px auto;
grid-template-rows: repeat(2, auto);
align-items: center;
}
.github-repo-card .repo-stat .icon {
width: 16px;
height: 16px;
}
.github-repo-card .repo-stat .stat-name {
grid-area: 2 / 1 / 3 / 3;
justify-self: center;
}