-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithubEmbed.css
More file actions
98 lines (83 loc) · 1.46 KB
/
GithubEmbed.css
File metadata and controls
98 lines (83 loc) · 1.46 KB
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
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #f8f9fa;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.repo-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 280px;
padding: 15px;
text-align: center;
margin: 15px;
}
.repo-card h1 {
font-size: 20px;
color: #333;
margin: 0 0 8px 0;
}
.repo-image {
border-radius: 50%;
width: 90px;
height: 90px;
margin-bottom: 10px;
border: 3px solid #d0d0d0;
}
.repo-stats {
display: flex;
justify-content: space-around;
margin: 8px 0;
}
.repo-stat svg {
margin: 4px;
color: #333;
}
.repo-stat span {
font-size: 11px;
}
.repo-stat {
color: #777;
display: flex;
flex-direction: column;
align-items: center;
margin: 4px;
}
.contributors {
margin-top: 16px;
}
.contributors-container {
position: relative;
height: 40px;
}
.contributor-avatar {
border-radius: 50%;
width: 30px;
height: 30px;
position: absolute;
z-index: 1;
}
/* Animations */
.loader
{
animation: loading-animation 1s linear infinite alternate;
width: 90px;
height: 90px;
}
.loader-text {
width: 100%;
height: 18px;
border-radius: 10px;
}
@keyframes loading-animation {
0% {
background-color: #f1f1f1;
}
100% {
background-color: #b6b6b6;
}
}