alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add colors
author
damedotblog
date
1 year ago
(Feb 27, 2025, 11:53 AM -0500)
commit
b9f80878
b9f80878121763e14c385e539b079646350b4dd8
parent
bc9fdea4
bc9fdea4e28f1d2254d790700164b35d1d81cb6c
+4
-26
1 changed file
Expand all
Collapse all
Unified
Split
src
components
ScoringMethodology
ScoringMethodology.css
+4
-26
src/components/ScoringMethodology/ScoringMethodology.css
Reviewed
···
74
74
font-weight: 600;
75
75
cursor: pointer;
76
76
background-color: var(--navbar-bg);
77
77
-
border-radius: 6px;
78
77
color: var(--text);
79
78
transition: background-color 0.3s ease, color 0.3s ease;
80
79
}
···
178
177
}
179
178
180
179
.social-statuses-container .definition-item:nth-child(2) .definition-term {
181
181
-
border-left: 4px solid #cbd5e0; /* Explorer */
180
180
+
border-left: 4px solid #004F84; /* Explorer */
182
181
}
183
182
184
183
.social-statuses-container .definition-item:nth-child(3) .definition-term {
185
185
-
border-left: 4px solid #a0aec0; /* Pathfinder */
184
184
+
border-left: 4px solid #3B9AF8; /* Pathfinder */
186
185
}
187
186
188
187
.social-statuses-container .definition-item:nth-child(4) .definition-term {
189
189
-
border-left: 4px solid #718096; /* Guide */
188
188
+
border-left: 4px solid #FFA500; /* Guide */
190
189
}
191
190
192
191
.social-statuses-container .definition-item:nth-child(5) .definition-term {
193
193
-
border-left: 4px solid #4a5568; /* Darkest - Leader */
192
192
+
border-left: 4px solid #FFD700; /* Darkest - Leader */
194
193
}
195
195
-
196
196
-
/* Dark mode overrides for the status indicators */
197
197
-
.dark-mode .social-statuses-container .definition-item:nth-child(1) .definition-term {
198
198
-
border-left: 4px solid #2d3748;
199
199
-
}
200
200
-
201
201
-
.dark-mode .social-statuses-container .definition-item:nth-child(2) .definition-term {
202
202
-
border-left: 4px solid #4a5568;
203
203
-
}
204
204
-
205
205
-
.dark-mode .social-statuses-container .definition-item:nth-child(3) .definition-term {
206
206
-
border-left: 4px solid #718096;
207
207
-
}
208
208
-
209
209
-
.dark-mode .social-statuses-container .definition-item:nth-child(4) .definition-term {
210
210
-
border-left: 4px solid #a0aec0;
211
211
-
}
212
212
-
213
213
-
.dark-mode .social-statuses-container .definition-item:nth-child(5) .definition-term {
214
214
-
border-left: 4px solid #cbd5e0;
215
215
-
}