-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.module.css
More file actions
105 lines (94 loc) · 1.74 KB
/
Copy pathstyles.module.css
File metadata and controls
105 lines (94 loc) · 1.74 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
99
100
101
102
103
104
105
.githubStarContainer {
display: flex;
align-items: center;
}
.githubStarButton {
display: inline-flex;
align-items: center;
gap: 4px;
height: 24px;
padding: 0 8px;
background-color: #f3f3f3;
color: #333;
border: 1px solid #d5d5d5;
border-radius: 3px;
text-decoration: none;
font-size: 12px;
font-weight: 600;
line-height: 24px;
transition: background-color 0.2s;
}
.githubStarButton:hover {
background-color: #e6e6e6;
text-decoration: none;
color: #333;
}
.githubStarText {
display: none;
}
@media (min-width: 640px) {
.githubStarText {
display: inline;
}
}
.githubStarCount {
width: 40px;
min-width: 40px;
height: 24px;
background-color: #f3f3f3;
color: #333;
position: relative;
margin-left: 5px;
padding: 0 5px;
font-size: 12px;
font-weight: 600;
line-height: 24px;
border: 1px solid #d5d5d5;
border-radius: 3px;
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
text-decoration: none;
transition: background-color 0.2s;
}
.githubStarCount:hover {
background-color: #e6e6e6;
text-decoration: none;
color: #333;
}
.githubStarCount::after,
.githubStarCount::before {
content: "";
position: absolute;
right: 100%;
top: 50%;
height: 0;
width: 0;
pointer-events: none;
border-style: solid;
border-color: transparent;
border-left: 0;
}
.githubStarCount::after {
border-right-color: #f3f3f3;
border-width: 4px;
margin-top: -4px;
}
.githubStarCount::before {
border-right-color: #d5d5d5;
border-width: 5px;
margin-top: -5px;
}
.spinner {
display: inline-block;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}